-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhmctg.cabal
60 lines (55 loc) · 1.78 KB
/
hmctg.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
-- Initial hmctg.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: hmctg
version: 0.1.1.0
synopsis: A Markov Chain Text Generator in Haskell
-- description:
homepage: http://github.com/c-14/hmctg
license: BSD3
license-file: LICENSE
author: Simon Thelen
maintainer: [email protected]
-- copyright:
category: Text
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/c-14/hmctg.git
executable hmctg
hs-source-dirs: src
default-language: Haskell2010
main-is: hmctg.hs
build-depends: base >=4.6,
bytestring,
directory,
random,
unordered-containers,
probability,
mtl,
hmctg
executable addFiletoDB
hs-source-dirs: src
default-language: Haskell2010
main-is: addFiletoDB.hs
build-depends: base >=4.6,
bytestring,
directory,
random,
unordered-containers,
probability,
mtl,
hmctg
library
exposed-modules: MDB.PHashMap, MDB.LHashMap, MBE.Store, MBE.Markov
-- other-modules:
-- other-extension:
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >=4.6,
bytestring,
directory,
random,
unordered-containers,
probability