-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhipy.cabal
More file actions
64 lines (57 loc) · 1.45 KB
/
hipy.cabal
File metadata and controls
64 lines (57 loc) · 1.45 KB
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
cabal-version: 3.0
name: hipy
version: 0.0.2.0
synopsis: A Python interpreter written in Haskell
license: MIT
license-file: LICENSE
author: Christopher Stewart, Sean Robinson
maintainer: [email protected], [email protected]
category: Development
build-type: Simple
extra-doc-files: CHANGELOG.md
common common-settings
ghc-options: -Wtabs -Wunused-binds -Wmissing-signatures
default-language: Haskell2010
build-depends: base, transformers
library
import: common-settings
hs-source-dirs: src
exposed-modules: Evaluator, Parser, Tokeniser, Types, StdLib
build-depends:
base,
transformers,
process
default-language: Haskell2010
executable hipy
import: common-settings
main-is: Main.hs
hs-source-dirs: src
build-depends:
base,
hipy,
transformers,
process
default-language: Haskell2010
other-modules: Evaluator, Parser, Tokeniser, Types, StdLib
common test-common
import: common-settings
hs-source-dirs: test
ghc-options: -threaded
build-depends:
tasty >=1.1 && <1.6,
hipy,
transformers,
process
test-suite hipy-test
import: test-common
type: exitcode-stdio-1.0
main-is: Spec.hs
build-depends:
tasty-hunit >=0.9 && <0.11,
transformers,
process
other-modules:
EvaluatorTests,
ParserTests,
TestUtils,
TokeniserTests