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
|
(lang dune 2.8)
(name pyml)
(license BSD-2-Clause)
(maintainers "Thierry Martinez <martinez@nsup.org>")
(authors "Thierry Martinez <martinez@nsup.org>")
(source
(github thierry-martinez/pyml))
(bug_reports "http://github.com/thierry-martinez/pyml/issues")
(homepage "http://github.com/thierry-martinez/pyml")
(documentation "http://github.com/thierry-martinez/pyml")
(generate_opam_files true)
(package
(name pyml)
(synopsis "OCaml bindings for Python")
(description "OCaml bindings for Python 2 and Python 3")
(depends
(ocaml (>= 3.12.1))
(ocamlfind :build)
(stdcompat (>= 18))
(conf-python-3-dev :with-test))
(depopts utop))
|