-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplato.opam
32 lines (31 loc) · 954 Bytes
/
plato.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
opam-version: "2.0"
name: "plato"
version: "1.1.3"
synopsis: "Python Library Adapted To OCaml"
maintainer: "Marc Chevalier <[email protected]>"
authors: "Marc Chevalier <[email protected]>"
homepage: "https://github.com/marc-chevalier/plato"
dev-repo: "git://github.com/marc-chevalier/plato"
bug-reports: "https://github.com/marc-chevalier/plato/issues"
depends: [
"ocaml" {>= "4.06.0"}
"dune" {>= "2.0.0"}
"re" {>= "1.9.0"}
"stdcompat" {>= "13"}
"cppo" {>= "1.6.6"}
"ounit2" {with-test & >= "2.0.8"}
"ocolor" {with-test}
]
build: [
["dune" "build" "-p" name "-j" jobs]
]
run-test: [
["dune" "runtest" "-p" name "-j" jobs]
]
license: "MIT"
description: """
Python Library Adapted To Ocaml
Plato provides some parts of Python standard library I was missing in OCaml.
That means things relevant in OCaml (typically, not GC related), without a
existing great OCaml library (like `re` for `re` or `yojson` for `json`).
"""