-
Notifications
You must be signed in to change notification settings - Fork 4
/
pycoq.opam
39 lines (35 loc) · 1.57 KB
/
pycoq.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
opam-version: "2.0"
maintainer: "e@x80.org"
homepage: "https://github.com/ejgallego/pycoq"
bug-reports: "https://github.com/ejgallego/pycoq/issues"
dev-repo: "git+https://github.com/ejgallego/pycoq.git"
license: "GPL-3.0-or-later"
doc: "https://ejgallego.github.io/pycoq/"
synopsis: "Python Bindinds for the Coq Proof Assistant"
description: """
PyCoq does provide bindings for the Coq proof assistant
"""
authors: [
"Emilio Jesús Gallego Arias"
]
depends: [
"ocaml" { >= "4.07.0" }
"coq" { >= "8.14.0" & < "8.15" }
"cmdliner" { >= "1.0.0" }
"ocamlfind" { >= "1.8.0" }
"sexplib" { >= "v0.13.0" }
"dune" { >= "2.0.1" }
"ppx_import" { build & >= "1.5-3" }
"ppx_deriving" { >= "4.2.1" }
"ppx_sexp_conv" { >= "v0.13.0" & < "v0.15" }
"yojson" { >= "1.7.0" }
"ppx_deriving_yojson" { >= "3.4" }
"pythonlib" { >= "v0.14.0" }
# Disabled due to ppx_python >= 0.15 and ppx_import < 2.0 not getting along
# "ppx_python" { >= "v0.15.0" }
# For the vendored ppx_python
"ppx_base"
"ppxlib" { >= "0.15.0" & < "0.18.0" }
"pyml" { >= "20200115" }
]
build: [ "dune" "build" "-p" name "-j" jobs ]