-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathjupyter.opam
54 lines (52 loc) · 1.31 KB
/
jupyter.opam
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
opam-version: "2.0"
synopsis: "An OCaml kernel for Jupyter"
description: "This provides an OCaml REPL with a great user interface such as markdown/HTML documentation, LaTeX formula by MathJax, and image embedding."
maintainer: [
"Akinori ABE <[email protected]>"
]
authors: [
"Akinori ABE"
]
license: "MIT"
homepage: "https://akabe.github.io/ocaml-jupyter/"
bug-reports: "https://github.com/akabe/ocaml-jupyter/issues"
dev-repo: "git+https://github.com/akabe/ocaml-jupyter.git"
build: [
[ "dune" "subst" ] {pinned}
[ "dune" "build" "-p" name "-j" jobs ]
]
depends: [
"ocaml" {>= "4.10.0" & < "4.15"}
"base-threads"
"base-unix"
"uuidm" {>= "0.9.6"}
"base64" {>= "3.2.0"}
"lwt" {>= "4.0.0"}
"lwt_ppx" {>= "1.0.0"}
"logs" {>= "0.6.0"}
"stdint" {>= "0.4.2"}
"zmq" {>= "5.0.0"}
"zmq-lwt" {>= "5.0.0"}
"yojson" {>="1.6.0"}
"ppx_yojson_conv" {>= "0.14.0"}
"ppx_deriving" {>= "5.2.1"}
"cryptokit" {>= "1.12"}
"dune" {>= "1.0.0"}
"ounit2" {with-test & >= "2.0.0"}
"ocp-indent" {with-test & >= "1.7.0"}
"ppx_deriving" {with-test}
]
depopts: [
"merlin"
]
conflicts: [
"merlin" {< "3.0.0"}
]
post-messages: [
"Please run for registration of ocaml-jupyter kernel:"
""
"$ ocaml-jupyter-opam-genspec"
"$ jupyter kernelspec install --name ocaml-jupyter \\"
" %{share}%/jupyter"
{success}
]