-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdune-project
34 lines (31 loc) · 978 Bytes
/
dune-project
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
(lang dune 2.8)
(generate_opam_files true)
(using menhir 2.0)
(name pyast)
(license "BSD-2-Clause")
(maintainers "Thierry Martinez <[email protected]>")
(authors "Thierry Martinez <[email protected]>")
(source (uri "git+https://github.com/thierry-martinez/pyast.git"))
(homepage "https://github.com/thierry-martinez/pyast")
(bug_reports "https://github.com/thierry-martinez/pyast")
(documentation "https://github.com/thierry-martinez/pyast")
(version "0.1.0")
(package
(name pyast)
(synopsis "Python AST")
(description "\
This library provides versioned abstract syntax tree for all Python
versions from Python 2.5 to Python 3.11.
")
(depends
(ocaml (>= 4.03.0))
(pyml (>= 20210226))
(refl (>= 0.4.0))
(cmdliner (>= 1.1.0))
(redirect (>= 0.2.0))
(stdcompat (>= 10))
(menhir (>= 20210419))
(pattern (and :with-test (>= 0.3.0)))
(alcotest (and :with-test (>= 1.4.0)))
(conf-python-3-dev :with-test)
(odoc (and :with-doc (>= 1.5.1)))))