-
Notifications
You must be signed in to change notification settings - Fork 2
/
zarr.opam
45 lines (45 loc) · 1.2 KB
/
zarr.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.0"
synopsis: "An Ocaml implementation of the Zarr V3 specification"
description: """
The Zarr library provides an OCaml implementation of the Zarr version 3
storage format specification for chunked & compressed multi-dimensional
arrays, designed for use in parallel computing."""
maintainer: ["Zolisa Bleki"]
authors: ["Zolisa Bleki"]
license: "BSD-3-Clause"
tags: ["zarr" "chunked arrays" "zarr version 3"]
homepage: "https://github.com/zoj613/zarr-ml"
doc: "https://zoj613.github.io/zarr-ml"
bug-reports: "https://github.com/zoj613/zarr-ml/issues"
depends: [
"dune" {>= "3.15"}
"ocaml" {>= "4.14.0"}
"yojson" {>= "1.6.0"}
"stdint" {>= "0.7.2"}
"zipc" {>= "0.2.0"}
"checkseum" {>= "0.4.0"}
"odoc" {with-doc}
"ounit2" {with-test}
"ppx_deriving" {with-test}
"bisect_ppx" {dev & >= "2.5.0" & with-test}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/zoj613/zarr-ml.git"
pin-depends: [
["bytesrw.dev" "git+https://erratique.ch/repos/bytesrw.git"]
]