-
Notifications
You must be signed in to change notification settings - Fork 0
/
weatherballoon.cabal
53 lines (48 loc) · 1.53 KB
/
weatherballoon.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
-- Initial weatherballoon.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: weatherballoon
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: Rachael Oxley
maintainer: rnoxley@gmail.com
category: Data
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable weatherballoon
main-is: Main.hs
hs-source-dirs: src
src/WB
other-modules: WB.Types
WB.Parse
WB.Generator
WB.Sort
WB.Stats
ghc-options: -O2
other-extensions: OverloadedStrings
build-depends: base >=4.5 && <5
, attoparsec
, text
, QuickCheck
, directory
, optparse-applicative
default-language: Haskell2010
test-suite wb-test
hs-source-dirs: tests
src
main-is: WBTest.hs
other-modules: WB.Parse
WB.Types
WB.Sort
WB.Stats
WB.Generator
ghc-options: -O2
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base >=4.5 && <5
, QuickCheck
, text
, attoparsec
, directory
, transformers