fix more bugs
[fp.git] / fp.cabal
1 -- Initial fp.cabal generated by cabal init.  For further documentation, 
2 -- see http://haskell.org/cabal/users-guide/
3
4 name:                fp
5 version:             0.1.0.0
6 -- synopsis:            
7 -- description:         
8 license:             BSD3
9 license-file:        LICENSE
10 author:              Tomáš Musil
11 maintainer:          tomik.musil@gmail.com
12 -- copyright:           
13 category:            Language
14 build-type:          Simple
15 -- extra-source-files:  
16 cabal-version:       >=1.10
17
18 library 
19   exposed-modules: Lambda
20                    Lambda.Term
21                    Lambda.Parser.Fancy
22                    Lambda.Parser.Simple
23                    HM
24                    HM.Term
25                    HM.Parser
26                    HM.Lambda
27   build-depends:       base >=4.7 && <5
28                      , text >=1.2 && <1.3
29                      , attoparsec >=0.12 && <0.13
30                      , containers
31                      , mtl
32   hs-source-dirs:      src
33   default-language:    Haskell2010
34
35 executable fp-interpret
36   main-is:             Main.hs
37   build-depends:       base >=4.7 && <5
38                      , text >=1.2 && <1.3
39                      , attoparsec >=0.12 && <0.13
40                      , containers
41                      , mtl
42                      , fp
43   hs-source-dirs:      src
44   default-language:    Haskell2010
45
46 test-suite doctests
47   type:          exitcode-stdio-1.0
48   hs-source-dirs:    tests
49   main-is:       doctest.hs
50   ghc-options:   -threaded
51   build-depends: base
52                , text >=1.2 && <1.3
53                , attoparsec >=0.12 && <0.13
54                , containers
55                , mtl
56                , fp
57                , doctest >= 0.8
58                , QuickCheck >= 2.7
59   default-language:    Haskell2010