77325abc539d9e2b86f4cb963816ef0aa1142ce3
[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 executable fp
19   main-is:             Main.hs
20   other-modules:       Lambda
21   -- other-extensions:    
22   build-depends:       base >=4.7 && <4.8
23                      , text >=1.2 && <1.3
24                      , attoparsec >=0.12 && <0.13
25                      , containers
26   hs-source-dirs:      src
27   default-language:    Haskell2010
28
29 test-suite doctests
30   type:          exitcode-stdio-1.0
31   hs-source-dirs:    tests
32   ghc-options:   -threaded
33   main-is:       doctest.hs
34   build-depends: base
35                , doctest >= 0.8
36                , QuickCheck >= 2.7
37                , text >=1.2 && <1.3
38                , attoparsec >=0.12 && <0.13
39                , containers
40   default-language:    Haskell2010