]> git.immae.eu Git - github/fretlink/edi-parser.git/blob - core/package.yaml
Release code as open source
[github/fretlink/edi-parser.git] / core / package.yaml
1 name: edi-parser-core
2 version: 20190607
3 synopsis: Example parser for EDI files
4 description: Please see README.md
5 category: Text
6 author: FretLink
7 maintainer: example@example.com
8 copyright: 2019 FretLink
9 github: fretlink/edi-parser
10
11 extra-source-files:
12 - README.md
13
14 dependencies:
15 - text
16
17 library:
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
31 tests:
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