forked from bjpop/language-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguage-python.cabal
More file actions
65 lines (62 loc) · 2.34 KB
/
Copy pathlanguage-python.cabal
File metadata and controls
65 lines (62 loc) · 2.34 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
64
65
name: language-python
version: 0.4.0
cabal-version: >= 1.6
synopsis: Parsing and pretty printing of Python code.
description: language-python is a Haskell library for lexical analysis, parsing
and pretty printing Python code. It supports versions 2.x and 3.x of Python.
category: Language
license: BSD3
license-file: LICENSE
copyright: (c) 2008-2012 Bernard James Pope
author: Bernard James Pope (Bernie Pope)
maintainer: florbitous@gmail.com
homepage: http://github.com/bjpop/language-python
build-depends: base
build-type: Simple
stability: experimental
extra-source-files: src/Language/Python/Version3/Parser/Parser.y
src/Language/Python/Version3/Parser/Lexer.x
ghc_6_12-13/Language/Python/Common/AST.hs
ghc_normal/Language/Python/Common/AST.hs
source-repository head
type: git
location: https://github.com/bjpop/language-python
Library
-- work around the memory usage bug in ghc 6.12.x
if impl(ghc < 6.12) || impl(ghc >= 6.14)
hs-source-dirs: src ghc_normal
else
hs-source-dirs: src ghc_6_12-13
build-depends:
base == 4.*,
containers == 0.5.*,
pretty == 1.1.*,
array == 0.4.*,
transformers == 0.3.*,
monads-tf == 0.1.*
build-tools: happy, alex
exposed-modules:
Language.Python.Common
Language.Python.Common.ParseError
Language.Python.Common.SrcLocation
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.Common.PrettyParseError
Language.Python.Common.StringEscape
other-modules:
Language.Python.Common.ParserUtils
Language.Python.Common.LexerUtils
Language.Python.Version3.Parser.Parser
Language.Python.Version3.Parser.Lexer
Language.Python.Version2.Parser.Parser
Language.Python.Version2.Parser.Lexer