-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyre-ast.opam
41 lines (41 loc) · 1.22 KB
/
pyre-ast.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
40
41
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.1.11"
synopsis: "Full-fidelity Python parser in OCaml"
description:
"pyre-ast is an OCaml library to parse Python source files into abstract syntax trees. Under the hood, it relies on the CPython parser to do the parsing work and therefore the result is always 100% compatible with the official CPython implementation."
maintainer: ["[email protected]"]
authors: ["Jia Chen"]
license: "MIT"
homepage: "https://github.com/grievejia/pyre-ast"
doc: "https://grievejia.github.io/pyre-ast/doc"
bug-reports: "https://github.com/grievejia/pyre-ast/issues"
depends: [
"dune" {>= "2.8"}
"base" {>= "v0.14.1"}
"ppx_sexp_conv" {>= "v0.14.0"}
"ppx_compare" {>= "v0.14.0"}
"ppx_hash" {>= "v0.14.0"}
"ppx_deriving" {>= "5.2.1"}
"ppx_make" {>= "0.2.1"}
"stdio" {with-test & >= "v0.14.0"}
"sexplib" {with-test & >= "v0.14.0"}
"cmdliner" {with-test & >= "1.1.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/grievejia/pyre-ast.git"
available: [ os-family != "windows" ]