forked from mattgreen/hython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hython.cabal
52 lines (51 loc) · 1.53 KB
/
hython.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
name: hython
version: 1.0
build-type: Simple
cabal-version: >= 1.2
executable hython
build-depends: base,
containers,
mtl,
array,
utf8-string,
regex-base,
regex-compat,
transformers,
unordered-containers,
filepath,
safe,
directory,
monad-loops,
executable-path,
hashable,
parsec,
hlint,
text,
bytestring,
haskeline,
semigroups,
uuid
build-tools: happy
other-modules: Language.Python.Lexer,
Language.Python.Parser,
REPL,
Hython.Interpreter,
Hython.Statement,
Hython.Environment,
Hython.Types,
Hython.Expression,
Hython.Builtins,
Hython.ControlFlow,
Hython.Call,
Hython.Ref,
Hython.AttributeDict,
Hython.Class,
Hython.Object,
Hython.Primitive,
Hython.BuiltinTypes.Dict,
Hython.BuiltinTypes.List,
Hython.Module
hs-source-dirs: src
main-is: Main.hs
ghc-options: -Wall -O2
extensions: FlexibleContexts