-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhipy.cabal
54 lines (48 loc) · 1.26 KB
/
hipy.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.0
name: hipy
version: 0.0.0.2
synopsis: A Python interpreter written in Haskell
license: MIT
license-file: LICENSE
author: Christopher Stewart, Sean Robinson
maintainer: christopher.stewart24@imperial.ac.uk, sean.robinson24@imperial.ac.uk
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
library
import: common-settings
hs-source-dirs: src
exposed-modules: Evaluator, Parser, Tokeniser, Types
build-depends: base
default-language: Haskell2010
executable hipy
import: common-settings
main-is: Main.hs
hs-source-dirs: src
build-depends:
base,
hipy
default-language: Haskell2010
other-modules: Evaluator, Parser, Tokeniser, Types
common test-common
import: common-settings
hs-source-dirs: test
ghc-options: -threaded
build-depends:
tasty >=1.1 && <1.6,
hipy
test-suite hipy-test
import: test-common
type: exitcode-stdio-1.0
main-is: Spec.hs
build-depends:
tasty-hunit >=0.9 && <0.11
other-modules:
EvaluatorTests,
ParserTests,
TestUtils,
TokeniserTests