-
Notifications
You must be signed in to change notification settings - Fork 0
/
Haithon.cabal
46 lines (42 loc) · 1.72 KB
/
Haithon.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
-- Initial Haithon.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: Haithon
version: 0.1.0.0
synopsis: A Haskell parser for a subset of the Python language. The intention of this project is two-fold! Firstly, I wish to try out Parsec's handling of indentation sensitive languages, and secondly I want to experiment with using this as some course material!
-- description:
homepage: https://github.com/Chobbes/Haithon
license: MIT
license-file: LICENSE
author: Calvin Beck
maintainer: hobbes@ualberta.ca
-- copyright:
category: Text
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules: Text.Haithon.Parser,
Text.Haithon.Tokens,
Text.Haithon.Expressions,
Text.Haithon.ParserTypes
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.9
, indents >=0.3.3
, mtl>=2.1.3.1
, parsec >=3.1.9
hs-source-dirs: src
default-language: Haskell2010
test-suite tests
main-is: Main.hs
hs-source-dirs: tests
type: exitcode-stdio-1.0
build-depends: base >=4.6 && <4.9
, HUnit >= 1.2.5.2
, Haithon
, parsec >=3.1.9
, indents >=0.3.3
, test-framework >= 0.8.1.1 && <0.9
, test-framework-hunit >= 0.3.0.1 && <0.4
, HUnit >= 1.2.5.2 && <1.4
default-language: Haskell2010