This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
dep2con.cabal
56 lines (46 loc) · 1.47 KB
/
dep2con.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
cabal-version: 3.4
name: dep2con
version: 0.1.0.0
synopsis: Several algorithms for converting dependency
structures into constituency structures.
license: BSD-3-Clause
author: Wen Kokke
maintainer: [email protected]
copyright: Wen Kokke (c) 2014
category: Language
build-type: Simple
tested-with: GHC==8.10.7
common dep2common
build-depends: base >=4.7 && <5
, containers
, cmdargs
, uu-parsinglib >=2.9 && <3
hs-source-dirs: src
other-modules:
, Data.String.Utils
, Language.Word
, Language.Word.Parse
, Language.POS
, Language.POS.Parse
, Language.Structure.Dependency
, Language.Structure.Dependency.Parse
, Language.Conversion.Con2Bin
, Language.Conversion.Dep2Bin
, Language.Conversion.Dep2Con
, Language.Structure.Binary
, Language.Structure.Constituency
, Language.Structure.Constituency.Parse
, Paths_dep2con
default-language: Haskell2010
executable dep2con
import: dep2common
main-is: Dep2Con.hs
executable dep2bin
import: dep2common
main-is: Dep2Bin.hs
test-suite test-conversion
import: dep2common
type: exitcode-stdio-1.0
main-is: TestConversion.hs
build-depends: Glob
hs-source-dirs: test