-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathantfarm.cabal
62 lines (56 loc) · 1.92 KB
/
antfarm.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
55
56
57
58
59
60
61
62
-- Initial antfarm.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: antfarm
version: 0.1.0.0
synopsis: Referring expressions for definitions
-- description:
homepage: http://hub.darcs.net/kowey/antfarm
license: BSD3
license-file: LICENSE
author: Eric Kow
maintainer: eric.kow@gmail.com
-- copyright:
category: Natural language processing
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: NLP.Antfarm
NLP.Antfarm.Cardinality
NLP.Antfarm.Demo
NLP.Antfarm.English
-- Spanish is not ready by it's needed to be exported for the tests
NLP.Antfarm.Spanish
NLP.Antfarm.History
NLP.Antfarm.Internal
NLP.Antfarm.Refex
build-depends: base < 5
, containers
, minimorph >= 0.1.1
, text
-- Begin NLP.Antfarm.Demo only :-/
, mtl
, parsec
, transformers
-- End NLP.Antfarm.Demo only
executable antfarm
main-is: antfarm.hs
hs-source-dirs: antfarm
-- other-modules:
build-depends: base < 5
, antfarm
, containers
, minimorph
, mtl
, text
test-suite antfarm-test
type: exitcode-stdio-1.0
main-is: antfarm-test.hs
hs-source-dirs: test
build-Depends: base
, antfarm
, HUnit
, minimorph
, test-framework
, test-framework-hunit
, text
, transformers