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.10. 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.0.4"} 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/archive/refs/tags/v0.1.0.tar.gz" 44 checksum: "sha512=11603fc03eb6f32ceb2ea3c0107b682aba96794490cfbf5c2cb369c67a0428515f63da56d4a3b4981390f6bca33ce6c8dffea2110d346fec0b7ac618deead4e7" 45}