this repo has no description
1opam-version: "2.0"
2synopsis: "Python AST"
3description: """
4This library provides versioned abstract syntax tree for all Python
5versions from Python 2.5 to Python 3.11.
6"""
7maintainer: ["Thierry Martinez <thierry.martinez@inria.fr>"]
8authors: ["Thierry Martinez <thierry.martinez@inria.fr>"]
9license: "BSD-2-Clause"
10homepage: "https://github.com/thierry-martinez/pyast"
11doc: "https://github.com/thierry-martinez/pyast"
12bug-reports: "https://github.com/thierry-martinez/pyast"
13depends: [
14 "ocaml" {>= "4.03.0"}
15 "dune" {>= "2.8"}
16 "pyml" {>= "20210226"}
17 "refl" {>= "0.4.0"}
18 "cmdliner" {>= "1.1.0"}
19 "redirect" {>= "0.2.0"}
20 "stdcompat" {>= "10"}
21 "menhir" {>= "20210419"}
22 "pattern" {with-test & >= "0.3.1"}
23 "alcotest" {with-test & >= "1.4.0"}
24 "conf-python-3-dev" {with-test}
25 "odoc" {with-doc & >= "1.5.1"}
26]
27build: [
28 ["dune" "subst"] {dev}
29 [
30 "dune"
31 "build"
32 "-p"
33 name
34 "-j"
35 jobs
36 "@install"
37 "@runtest" {with-test}
38 "@doc" {with-doc}
39 ]
40]
41dev-repo: "git+https://github.com/thierry-martinez/pyast.git"
42url {
43 src: "https://github.com/thierry-martinez/pyast/releases/download/v0.2.0/pyast.0.2.0.tar.gz"
44 checksum: "sha512=6457a333f472e72198307e65b1c3c9b4e7815547d3b84ad90338a05f3b4b701e371e109400c8a6f7ee0d629807a8b5c44489ce61c73484482271f8095a67816b"
45}