-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgreek-morph.cabal
129 lines (126 loc) · 3.19 KB
/
greek-morph.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: greek-morph
version: 3.0.0
synopsis: Ancient Greek morphophonology modeled in Haskell verified against primary sources
description: Please see README.md
homepage: https://github.com/ancientlanguage/haskell-greek-morph#readme
author: Scott Fleischman
maintainer: [email protected]
copyright: 2016 Scott Fleischman
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/ancientlanguage/haskell-greek-morph
library
hs-source-dirs: src
exposed-modules:
Grammar.Greek.Morph.Clitic.Round
Grammar.Greek.Morph.Clitic.Stage
Grammar.Greek.Morph.Clitic.Types
Grammar.Greek.Morph.Aspirate
Grammar.Greek.Morph.Forms.Eliding
Grammar.Greek.Morph.Forms.Enclitic
Grammar.Greek.Morph.Forms.Proclitic
Grammar.Greek.Morph.Paradigm.Ending
Grammar.Greek.Morph.Paradigm.Maps
Grammar.Greek.Morph.Paradigm.Types
Grammar.Greek.Morph.Phoneme.Round
Grammar.Greek.Morph.Phoneme.Stage
Grammar.Greek.Morph.Phoneme.Types
Grammar.Greek.Morph.QuasiQuoters
Grammar.Greek.Morph.ShouldElide.Round
Grammar.Greek.Morph.ShouldElide.Stage
Grammar.Greek.Morph.ShouldElide.Types
Grammar.Greek.Morph.Serialize
Grammar.Greek.Morph.Smyth.Adjectives
Grammar.Greek.Morph.Smyth.Conjunctions.Coordinating
Grammar.Greek.Morph.Smyth.Conjunctions.Subordinating
Grammar.Greek.Morph.Smyth.Nouns.Declension1
Grammar.Greek.Morph.Smyth.Nouns.Declension2
Grammar.Greek.Morph.Smyth.Nouns.Declension3
Grammar.Greek.Morph.Smyth.Prepositions
Grammar.Greek.Morph.Smyth.Verbs.Participles
Grammar.Greek.Morph.Smyth.Verbs.Verbs
Grammar.Greek.Morph.Stage
Grammar.Greek.Morph.Types
ghc-options: -Wall -fwarn-tabs -O2
default-extensions:
OverloadedStrings,
PatternSynonyms,
ScopedTypeVariables,
TypeOperators
build-depends:
base >= 4.9,
containers,
bytestring,
text,
cereal,
lens,
either,
random-fu,
random-source,
array,
directory,
filepath,
extra,
template-haskell,
syb,
test-framework,
test-framework-hunit,
HUnit,
primary-type,
grammar,
greek-script
default-language: Haskell2010
executable greek-morph-query
hs-source-dirs: app
main-is: Main.hs
other-modules:
Morph,
Queries
ghc-options: -Wall -fwarn-tabs -O2 -threaded -rtsopts -with-rtsopts=-N
default-extensions:
OverloadedStrings
ScopedTypeVariables,
TypeOperators
build-depends:
base,
containers,
bytestring,
text,
either,
lens,
cereal,
optparse-applicative,
text-format,
primary-type,
grammar,
greek-script,
greek-morph
default-language: Haskell2010
test-suite greek-morph-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules:
WordTests
default-extensions:
OverloadedStrings,
ScopedTypeVariables,
TypeOperators
build-depends:
base,
containers,
either,
lens,
test-framework,
test-framework-hunit,
HUnit,
hspec,
text,
primary-type,
grammar,
greek-script,
greek-morph
ghc-options: -fwarn-tabs -O2 -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010