-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinline-python.cabal
149 lines (139 loc) · 4.09 KB
/
inline-python.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
Cabal-Version: 3.0
Build-Type: Simple
Name: inline-python
Version: 0.1.1.1
Synopsis: Python interpreter embedded into haskell.
Description:
This package embeds python interpreter into haskell program and
allows to write python snippets as quasiquotes. Values could be
easily transferred between python and haskell. It's possible to
call haskell from python as well.
License: BSD-3-Clause
License-File: LICENSE
Author: Aleksey Khudyakov <alexey.skladnoy@gmail.com>
Maintainer: Aleksey Khudyakov <alexey.skladnoy@gmail.com>
Homepage: https://github.com/Shimuuar/inline-python
Bug-reports: https://github.com/Shimuuar/inline-python/issues
Category: FFI
extra-doc-files:
ChangeLog.md
extra-source-files:
include/inline-python.h
py/bound-vars.py
source-repository head
type: git
location: http://github.com/Shimuuar/inline-python
common language
Ghc-options: -Wall
Default-Language: GHC2021
Default-Extensions:
NoPolyKinds
--
DeriveAnyClass
DerivingVia
PatternSynonyms
ViewPatterns
LambdaCase
MultiWayIf
--
NoFieldSelectors
DuplicateRecordFields
OverloadedRecordDot
----------------------------------------------------------------
Library
import: language
Build-Depends: base >=4.14 && <5
, primitive >=0.6.2
, vector >=0.13.2
, containers >=0.5
, process
, transformers >=0.4
, inline-c >=0.9.1
, stm >=2.4
, template-haskell -any
, text >=2
, bytestring
, exceptions >=0.10
, vector >=0.13
hs-source-dirs: src
include-dirs: include
c-sources: cbits/python.c
cc-options: -g -Wall
pkgconfig-depends: python3-embed
--
Exposed-modules:
Python.Inline
Python.Inline.Literal
Python.Inline.QQ
Python.Inline.Types
Other-modules:
Python.Internal.CAPI
Python.Internal.Eval
Python.Internal.EvalQQ
Python.Internal.Program
Python.Internal.Types
Python.Internal.Util
----------------------------------------------------------------
library test
import: language
Default-Extensions:
QuasiQuotes
build-depends: base
, inline-python
, tasty >=1.2
, tasty-hunit >=0.10
, tasty-quickcheck >=0.10
, quickcheck-instances >=0.3.32
, exceptions
, containers
, vector
hs-source-dirs: test
Exposed-modules:
TST.Run
TST.ToPy
TST.FromPy
TST.Callbacks
TST.Roundtrip
TST.Util
-- Running tests using several threads does very good job at finding threading
-- bugs. Especially deadlocks
test-suite inline-python-tests
import: language
type: exitcode-stdio-1.0
Ghc-options: -threaded -with-rtsopts=-N2
hs-source-dirs: test/exe
main-is: main.hs
build-depends: base
, inline-python
, inline-python:test
, tasty
test-suite inline-python-tests1
import: language
type: exitcode-stdio-1.0
hs-source-dirs: test/exe
main-is: main.hs
build-depends: base
, inline-python
, inline-python:test
, tasty
benchmark pysmall
import: language
type: exitcode-stdio-1.0
Ghc-options: -threaded
main-is: Main.hs
hs-source-dirs: bench
build-depends:
base >= 2 && < 5
, inline-python
, tasty
, tasty-bench >= 0.2.1
benchmark pysmall1
import: language
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: bench
build-depends:
base >= 2 && < 5
, inline-python
, tasty
, tasty-bench >= 0.2.1