this repo has no description
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "An Ocaml implementation of the Zarr V3 specification"
4description: """
5The Zarr library provides an OCaml implementation of the Zarr version 3
6 storage format specification for chunked & compressed multi-dimensional
7 arrays, designed for use in parallel computing."""
8maintainer: ["Zolisa Bleki"]
9authors: ["Zolisa Bleki"]
10license: "BSD-3-Clause"
11tags: ["zarr" "chunked arrays" "zarr version 3"]
12homepage: "https://github.com/zoj613/zarr-ml"
13doc: "https://zoj613.github.io/zarr-ml"
14bug-reports: "https://github.com/zoj613/zarr-ml/issues"
15depends: [
16 "dune" {>= "3.15"}
17 "ocaml" {>= "4.14.0"}
18 "yojson" {>= "1.6.0"}
19 "ezgzip" {>= "0.2.0"}
20 "stdint" {>= "0.7.2"}
21 "checkseum" {>= "0.4.0"}
22 "odoc" {with-doc}
23 "ounit2" {with-test}
24 "ppx_deriving" {with-test}
25 "bisect_ppx" {dev & >= "2.5.0" & with-test}
26]
27available: arch != "arm32" & arch != "x86_32"
28build: [
29 ["dune" "subst"] {dev}
30 [
31 "dune"
32 "build"
33 "-p"
34 name
35 "-j"
36 jobs
37 "@install"
38 "@runtest" {with-test}
39 "@doc" {with-doc}
40 ]
41]
42dev-repo: "git+https://github.com/zoj613/zarr-ml.git"
43url {
44 src: "https://github.com/zoj613/zarr-ml/archive/refs/tags/v0.1.0.tar.gz"
45 checksum: [
46 "md5=df6bb0048a4479632c2867d5259c9b27"
47 "sha512=341b9db6910a90bb3663c36ae75afb84324c52980b7c6866809424f40cdcc4490eb1f606f5d2a3b1cc91e54671bb09cfc9feae3d9bb55474a66762658d26860c"
48 ]
49}