forked from janestreet/pythonlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pythonlib.opam
34 lines (34 loc) · 983 Bytes
/
pythonlib.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
opam-version: "2.0"
maintainer: "Jane Street developers"
authors: ["Jane Street Group, LLC"]
homepage: "https://github.com/janestreet/pythonlib"
bug-reports: "https://github.com/janestreet/pythonlib/issues"
dev-repo: "git+https://github.com/janestreet/pythonlib.git"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/pythonlib/index.html"
license: "MIT"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.11.0" & < "4.13.0"}
"base"
"core"
"expect_test_helpers_core"
"ppx_bin_prot"
"ppx_compare"
"ppx_expect"
"ppx_here"
"ppx_let"
"ppx_python"
"ppx_sexp_conv"
"ppx_string"
"stdio"
"typerep"
"dune" {>= "2.0.0"}
"pyml" {>= "20211015"}
]
available: arch != "arm32" & arch != "x86_32"
synopsis: "A library to help writing wrappers around ocaml code for python"
description: "
This library helps exposing ocaml functions to python. The python runtime interaction is handled by pyml.
"