-
Notifications
You must be signed in to change notification settings - Fork 0
/
l2-ud.cabal
44 lines (43 loc) · 974 Bytes
/
l2-ud.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
name: l2-ud
version: 0
synopsis: tools for analyzing (L1-)L2 UD treebanks
description: a set of tools for analyzing (parallel L1-)L2 UD treebanks
license: BSD2
license-file: LICENSE
author: Arianna Masciolini
maintainer: [email protected]
category: Language
build-type: Simple
extra-source-files: README.md
-- copied from concept-alignment, probably arbitrary
cabal-version: >= 1.10
executable l2-ud
hs-source-dirs: src
main-is: Main.hs
other-modules:
Errors,
Align,
Extract,
Match,
Annotate,
Utils.Misc,
Utils.Output,
Utils.UDPatterns,
Utils.UDConcepts
build-depends:
base,
extra,
containers,
data-ordlist,
gf-ud,
concept-alignment,
regex-posix,
split,
directory,
filepath,
MissingH,
hs-md,
curl,
aeson,
utf8-string
default-language: Haskell2010