this repo has no description
1opam-version: "2.0" 2maintainer: [ 3 "Akinori ABE <aabe.65535@gmail.com>" 4] 5authors: [ 6 "Akinori ABE" 7] 8license: "MIT" 9homepage: "https://akabe.github.io/ocaml-jupyter/" 10bug-reports: "https://github.com/akabe/ocaml-jupyter/issues" 11dev-repo: "git+https://github.com/akabe/ocaml-jupyter.git" 12 13build: [ 14 [ "dune" "subst" ] {dev} 15 [ "dune" "build" "-p" name "-j" jobs ] 16] 17depends: [ 18 "ocaml" {>= "4.10.0" & < "4.14.1"} 19 "base-threads" 20 "base-unix" 21 "uuidm" {>= "0.9.6"} 22 "base64" {>= "3.2.0"} 23 "lwt" {>= "4.0.0"} 24 "lwt_ppx" {>= "1.0.0"} 25 "logs" {>= "0.6.0"} 26 "stdint" {>= "0.4.2"} 27 "zmq" {>= "5.0.0"} 28 "zmq-lwt" {>= "5.0.0"} 29 "yojson" {>="1.6.0"} 30 "ppx_deriving_yojson" {>= "3.6.0"} 31 "cryptokit" {>= "1.12"} 32 "dune" {>= "1.0.0"} 33 "ounit2" {with-test & >= "2.0.0"} 34 "ocp-indent" {with-test & >= "1.7.0"} 35] 36depopts: [ 37 "merlin" 38] 39conflicts: [ 40 "merlin" {< "3.0.0"} 41] 42 43post-messages: [ 44 "Please run for registration of ocaml-jupyter kernel:" 45 "" 46 "$ ocaml-jupyter-opam-genspec" 47 "$ jupyter kernelspec install --name ocaml-jupyter \\" 48 " %{share}%/jupyter" 49 {success} 50] 51 52synopsis: "An OCaml kernel for Jupyter notebook" 53description: 54 "OCaml Jupyter provides an OCaml REPL on Jupyter (a great interface with markdown/HTML documentation, LaTeX formula by MathJax, and image embedding). This is useful for data analysis in OCaml." 55url { 56 src: "https://github.com/akabe/ocaml-jupyter/releases/download/v2.7.8/jupyter-2.7.8.tbz" 57 checksum: "sha256=3cc7da5adc9407d368c16bf3dd9d97ca8e42afa39f3da049ef50f5b1b87f4094" 58}