-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathPyF.cabal
108 lines (92 loc) · 2.38 KB
/
PyF.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
cabal-version: 2.4
name: PyF
version: 0.11.4.0
synopsis:
Quasiquotations for a python like interpolated string formatter
description:
Quasiquotations for a python like interpolated string formatter.
license: BSD-3-Clause
license-file: LICENSE
author: Guillaume Bouchard
maintainer: [email protected]
category: Text
build-type: Simple
extra-source-files:
ChangeLog.md
Readme.md
test/golden/*.golden
test/golden96/*.golden
library
exposed-modules:
PyF
PyF.Class
PyF.Formatters
PyF.Internal.Meta
PyF.Internal.Parser
PyF.Internal.ParserEx
PyF.Internal.PythonSyntax
PyF.Internal.QQ
build-depends:
, base >=4.12 && <4.22
, bytestring >=0.10.8 && <0.13
, ghc >=8.6.1
, mtl >=2.2.2 && <2.4
, parsec >=3.1.13 && <3.2
, template-haskell >=2.14.0 && <2.24
, text >=1.2.3 && <2.2
, time >=1.8.0 && <1.15
if impl(ghc <9.2.1)
build-depends: ghc-boot >=8.6.1 && <9.7
hs-source-dirs: src
ghc-options: -Wall -Wunused-packages -Wincomplete-uni-patterns
default-language: Haskell2010
default-extensions: QuasiQuotes
test-suite pyf-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: SpecCustomDelimiters
build-depends:
, base
, bytestring
, hspec
, PyF
, template-haskell
, text
, time
ghc-options:
-Wall -threaded -rtsopts -with-rtsopts=-N -Wunused-packages
default-language: Haskell2010
test-suite pyf-overloaded
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: SpecOverloaded.hs
build-depends:
, base
, bytestring
, hspec
, PyF
, text
ghc-options:
-Wall -threaded -rtsopts -with-rtsopts=-N -Wunused-packages
default-language: Haskell2010
test-suite pyf-failure
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: SpecFail.hs
build-depends:
, base
, deepseq
, filepath
, hspec
, HUnit
, process
, PyF
, temporary
, text
ghc-options:
-Wall -threaded -rtsopts -with-rtsopts=-N -Wunused-packages
default-language: Haskell2010
source-repository head
type: git
location: http://github.com/guibou/PyF