-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyn.cabal
80 lines (77 loc) · 3.18 KB
/
pyn.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
-- Initial pyn.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: pyn
version: 0.0.1.0
synopsis: Python 2.7 with type-annotations
-- description:
homepage: https://github.com/TOSPIO/pyn
license: BSD3
license-file: LICENSE
author: Savor d'Isavano
maintainer: [email protected]
-- copyright:
category: Development
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable pyn
default-language: Haskell2010
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base == 4.*
, containers == 0.5.*
, pretty == 1.1.*
, array >= 0.4 && < 0.6
, pyn
, transformers >= 0.3 && < 0.5
, monads-tf == 0.1.*
, utf8-string >= 1 && < 2
hs-source-dirs: src
default-language: Haskell2010
library
default-language: Haskell2010
hs-source-dirs: lib
ghc-options: -fwarn-incomplete-patterns -fwarn-unused-imports -fwarn-warnings-deprecations
build-depends: base == 4.*
, containers == 0.5.*
, either-unwrap >= 1.1 && < 2
, pretty == 1.1.*
, array >= 0.4 && < 0.6
, text >= 1.2 && < 1.3
, text-format >= 0.3 && < 0.4
, transformers >= 0.3 && < 0.5
, monads-tf == 0.1.*
, template-haskell >= 2.10 && < 2.11
, utf8-string >= 1 && < 2
build-tools: happy, alex
exposed-modules: Language.Python.Common
Language.Python.Common.ParseError
Language.Python.Common.PrettyParseError
Language.Python.Common.SrcLocation
Language.Python.Common.StringEscape
Language.Python.Common.Pretty
Language.Python.Common.Token
Language.Python.Common.ParserMonad
Language.Python.Common.PrettyToken
Language.Python.Common.AST
Language.Python.Common.PrettyAST
-- Language.Python.Version3
-- Language.Python.Version3.Parser
-- Language.Python.Version3.Lexer
-- Language.Python.Version2
-- Language.Python.Version2.Parser
-- Language.Python.Version2.Lexer
Language.Python.Pyn
Language.Python.Pyn.Parser
Language.Python.Pyn.Lexer
Language.Python.Pyn.Visit
other-modules: Language.Python.Common.ParserUtils
Language.Python.Common.LexerUtils
Language.Python.Common.Utils
-- Language.Python.Version3.Parser.Parser
-- Language.Python.Version3.Parser.Lexer
-- Language.Python.Version2.Parser.Parser
-- Language.Python.Version2.Parser.Lexer
Language.Python.Pyn.Parser.Parser
Language.Python.Pyn.Parser.Lexer