-
Notifications
You must be signed in to change notification settings - Fork 0
/
opine.opam
45 lines (45 loc) · 1 KB
/
opine.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
42
43
44
45
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.1.3"
synopsis: "Python AST unparse implementation in OCaml"
description:
"Opine is an OCaml library that unparses the python AST back to python code."
maintainer: ["[email protected]"]
authors: ["Arulselvan Madhavan"]
license: "MIT"
tags: ["topics" "ocaml" "python" "ast"]
homepage: "https://github.com/ArulselvanMadhavan/opine"
bug-reports: "https://github.com/ArulselvanMadhavan/opine/issues"
depends: [
"ocaml" {>= "4.14.0"}
"dune" {>= "3.6"}
"ppx_hash"
"ppx_compare"
"ppx_sexp_conv"
"ppx_make"
"ppx_deriving"
"pyre-ast" {>= "0.1.6"}
"stdio"
"base" {>= "0.15.0"}
"uutf"
"cmdliner" {>= "1.1.1"}
"sexplib"
"ppx_let"
"odoc" {with-doc}
]
available: os != "macos"
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ArulselvanMadhavan/opine.git"