packages feed

csa-0.1.0: csa.cabal

-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 1af8fc7f9a2c6a29dbc50f13e65b27c78c9af0950a1227bd2edb7758f8a977ed

name:           csa
version:        0.1.0
synopsis:       Connection-set algebra (CSA) library
description:    Library for algebraic connection-set expressions, built on M. Djurfeldt's idea of connection-set algebra [1]. 
                .
                 1: Mikael Djurfeldt. The Connection-set Algebra: a formalism for the representation of connectivity structure in neuronal network models, implementations in Python and C++, and their use in simulators, BMC Neuroscience, 2011. https://doi.org/10.1186/1471-2202-12-S1-P80
category:       Algebra
homepage:       https://github.com/volr/csa#readme
bug-reports:    https://github.com/volr/csa/issues
author:         Jens Egholm Pedersen
maintainer:     Jens Egholm Pedersen
license:        GPL
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10
extra-source-files:
    CHANGELOG.md
    LICENSE
    package.yaml
    README.md
    stack.yaml

source-repository head
  type: git
  location: https://github.com/volr/csa

library
  hs-source-dirs:
      library
  ghc-options: -Wall
  build-depends:
      base >=4.10.0 && <5
    , hmatrix
  exposed-modules:
      CSA
  other-modules:
      Paths_csa
  default-language: Haskell2010

test-suite csa-test-suite
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
      test-suite
  ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
  build-depends:
      base >=4.10.0 && <5
    , csa
    , hedgehog
    , hmatrix
    , tasty
    , tasty-hedgehog
    , tasty-hspec
  other-modules:
      Paths_csa
  default-language: Haskell2010