-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjupyter.cabal
117 lines (106 loc) · 4.06 KB
/
jupyter.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
name: jupyter
version: 0.9.0
synopsis: A library for creating and using Jupyter kernels.
description: An implementation of the Jupyter messaging protocol, used to implement Jupyter kernels in Haskell or communicate with existing Jupyter kernels via the messaging protocol.
homepage: http://github.com/gibiansky/jupyter-haskell
license: MIT
license-file: LICENSE
author: Andrew Gibiansky
maintainer: [email protected]
category: Development
build-type: Simple
cabal-version: >=1.16
extra-source-files: README.md
stability: stable
source-repository head
type: git
location: git://github.com/gibiansky/jupyter-haskell.git
library
exposed-modules: Jupyter.Kernel
Jupyter.Client
Jupyter.ZeroMQ
Jupyter.Messages
Jupyter.Messages.Internal
Jupyter.UUID
Jupyter.Install
Jupyter.Install.Internal
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >=4.6 && <5,
aeson >=0.6,
bytestring >=0.10,
cereal >=0.3,
containers >=0.5,
directory >=1.1,
temporary >=1.2,
filepath >=1.2,
process >=1.1,
mtl >=2.1,
text >=0.11,
transformers >=0.3,
unordered-containers >= 0.2.5,
uuid >=1.3,
zeromq4-haskell >=0.6.5,
SHA >=1.6,
monad-control >=1.0,
async >= 2.0,
exceptions >= 0.8,
random >= 1.1
test-suite test-jupyter
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Test.hs
other-modules: Jupyter.Test.Install
Jupyter.Test.Kernel
Jupyter.Test.ZeroMQ
Jupyter.Test.Client
Jupyter.Test.MessageExchange
Jupyter.Test.Utils
build-depends: base >= 4.8 && < 5,
tasty >= 0.7,
tasty-hunit >= 0.9,
extra >= 1.1,
directory >= 1.2,
silently >= 1.2,
aeson >= 0.6,
bytestring >= 0.10,
text >= 0.11,
zeromq4-haskell >= 0.6,
transformers >= 0.3,
containers >=0.5,
process >= 1.2,
exceptions >= 0.8,
async >= 2.0,
unordered-containers >= 0.2,
jupyter
executable kernel-basic
default-language: Haskell2010
hs-source-dirs: examples/basic
main-is: Main.hs
build-depends: base >= 4.8,
text >= 1.2,
jupyter
executable kernel-calculator
default-language: Haskell2010
hs-source-dirs: examples/calculator
main-is: Main.hs
other-modules: Calculator.Handler
build-depends: base >= 4.8,
text >= 1.2,
jupyter
executable kernel-stdin
default-language: Haskell2010
hs-source-dirs: examples/stdin
main-is: Main.hs
build-depends: base >= 4.8,
text >= 1.2,
jupyter
executable client-kernel-info
default-language: Haskell2010
hs-source-dirs: examples/client-kernel-info
main-is: Main.hs
build-depends: base >= 4.8,
process >= 1.2,
transformers >= 0.3,
jupyter