-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwikidata.opam
40 lines (40 loc) · 1.02 KB
/
wikidata.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.0.3"
synopsis: "Library for parsing Wikidata JSON"
description: """
Provides functions for converting Wikidata JSON strings
into objects and datatypes that represent Wikidata Entities in an OCaml-friendly
format."""
maintainer: ["[email protected]"]
authors: ["Impossibly New"]
license: "MIT"
homepage: "https://github.com/impossiblynew/owikidata"
bug-reports: "https://github.com/impossiblynew/owikidata/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "4.11.1"}
"cohttp-lwt-unix" {>= "4.0.0" & with-test}
"tls" {>= "0.13.0" & with-test}
"atdgen" {build}
"atdgen-runtime" {>= "2.2.1"}
"alcotest" {>= "1.4.0" & with-test}
"alcotest-lwt" {>= "1.4.0" & with-test}
"lwt_ppx" {>= "2.0.2" & with-test}
"bisect_ppx" {>= "2.5.0" & with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]