-
Notifications
You must be signed in to change notification settings - Fork 0
/
hsLEMS.cabal
54 lines (51 loc) · 1.9 KB
/
hsLEMS.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: hsLEMS
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/lisphacker/hsLEMS#readme
license: BSD3
license-file: LICENSE
author: Gautham Ganapathy
maintainer: [email protected]
copyright: (c) Gautham Ganapathy, 2018
category: Science/Simulation
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable lemsc
hs-source-dirs: prog-src
ghc-options: -Wall
main-is: Main.hs
build-depends: base >= 4.7 && < 5
, containers >= 0.5.7.1
, hsLEMS
, optparse-applicative
, protolude
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Language.NeuroML.LEMS.Errors
, Language.NeuroML.LEMS.Monad
, Language.NeuroML.LEMS.Parser
, Language.NeuroML.LEMS.Parser.ParseTree
, Language.NeuroML.LEMS.Parser.XMLParser
, Language.NeuroML.LEMS.Semantics.Analysis
, Language.NeuroML.LEMS.Semantics.Expression
, Language.NeuroML.LEMS.Semantics.Model
build-depends: attoparsec
, base >= 4.7 && < 5
, containers >= 0.5.7.1
, directory >= 1.3.0.0
, extra >= 1.6.14
, hxt >= 9.0.0
, lens
, mtl
, protolude
, text >= 1.2.2.1
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude
source-repository head
type: git
location: git://github.com/lisphacker/hsLEMS