]> git.immae.eu Git - github/fretlink/edi-parser.git/blame - core/package.yaml
Release code as open source
[github/fretlink/edi-parser.git] / core / package.yaml
CommitLineData
a9d77a20
FM
1name: edi-parser-core
2version: 20190607
3synopsis: Example parser for EDI files
4description: Please see README.md
5category: Text
6author: FretLink
7maintainer: example@example.com
8copyright: 2019 FretLink
9github: fretlink/edi-parser
10
11extra-source-files:
12- README.md
13
14dependencies:
15- text
16
17library:
18 source-dirs: src
19 ghc-options:
20 - -Wall
21 - -Werror
22 dependencies:
23 - base >=4.7 && <5
24 - data-default
25 - formatting
26 - mtl
27 - parsec
28 - scientific
29 - time
30
31tests:
32 edi-parser-core-test:
33 main: Spec.hs
34 source-dirs: test
35 ghc-options:
36 - -threaded
37 - -rtsopts
38 - -with-rtsopts=-N
39 - -Wall
40 - -Werror
41 dependencies:
42 - base
43 - edi-parser-core
44 - parsec
45 - HUnit
46 - test-framework
47 - test-framework-hunit