-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprepare.cabal
108 lines (105 loc) · 2.48 KB
/
prepare.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: prepare
version: 4.0.0
synopsis: Prepare ancient language data
description: Please see README.md
homepage: https://github.com/ancientlanguage/haskell-prepare
license: MIT
license-file: LICENSE
author: Scott Fleischman
maintainer: scott-fleischman@users.noreply.github.com
copyright: 2016 Scott Fleischman
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules:
Prepare,
Prepare.Decompose,
Prepare.Log,
Prepare.Perseus.Paths,
Prepare.Perseus.TeiEpidocHeaderModel,
Prepare.Perseus.TeiEpidocHeaderParser,
Prepare.Perseus.TeiEpidocModel,
Prepare.Perseus.TeiEpidocParser,
Prepare.Perseus.TeiEpidocParserCommon,
Prepare.Perseus.TeiEpidocUnify,
Prepare.Sblgnt.Model,
Prepare.Sblgnt.Parser,
Prepare.Sblgnt.Unify,
Prepare.Source.DecomposeWords,
Prepare.Source.Output,
Prepare.Tanach.HeaderModel,
Prepare.Tanach.HeaderParser,
Prepare.Tanach.IndexModel,
Prepare.Tanach.IndexParser,
Prepare.Tanach.Paths,
Prepare.Tanach.TanachModel,
Prepare.Tanach.TanachParser,
Prepare.Tanach.TeiHeaderModel,
Prepare.Tanach.TeiHeaderParser,
Prepare.Xml.Events,
Prepare.Xml.Parser,
Prepare.Xml.PositionTypes
ghc-options: -Wall -fwarn-tabs -O2
default-extensions:
LambdaCase,
OverloadedStrings,
ScopedTypeVariables
build-depends:
base >=4.9,
containers >=0.5,
text >=1.2,
resourcet >=1.1,
conduit >=1.2,
conduit-combinators >=1.0,
conduit-extra >=1.1,
xml-types >=0.3,
xml-conduit >=1.3,
megaparsec >=5.0,
split >=0.2,
filepath >=1.4,
directory >=1.2,
lens >=4.1,
cereal >=0.5,
primary-type
default-language: Haskell2010
executable prep
hs-source-dirs: app
main-is: Main.hs
other-modules:
Greek,
Hebrew
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs -O2
default-extensions:
LambdaCase,
OverloadedStrings,
ScopedTypeVariables
build-depends:
base,
containers,
text,
xml-conduit,
filepath,
prepare,
cereal,
filemanip >=0.3,
bytestring >=0.10,
primary-type
test-suite prepare-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
ghc-options: -Wall -fwarn-tabs -O2 -threaded -rtsopts -with-rtsopts=-N
default-extensions:
LambdaCase,
OverloadedStrings,
ScopedTypeVariables
build-depends:
base,
prepare,
test-framework,
test-framework-hunit,
HUnit,
hspec
default-language: Haskell2010