this repo has no description
1opam-version: "2.0" 2maintainer: "Laurent Mazare <lmazare@gmail.com>" 3authors: "Laurent Mazare" 4homepage: "https://github.com/LaurentMazare/npy-ocaml" 5bug-reports: "https://github.com/LaurentMazare/npy-ocaml/issues" 6dev-repo: "git+https://github.com/LaurentMazare/npy-ocaml.git" 7build: [ 8 "jbuilder" 9 "build" 10 "--only-packages" 11 "npy" 12 "--root" 13 "." 14 "--no-config" {jbuilder:version >= "1.0+beta18"} 15 "-j" 16 jobs 17 "@install" 18] 19depends: [ 20 "ocaml" {>= "4.06.0"} 21 "camlzip" 22 "ocamlfind" {build} 23 "jbuilder" 24] 25synopsis: "Numpy npy file format reading/writing." 26description: 27 "Provide simple read/write function using the numpy npy/npz file formats. These can be used to save a bigarray to disk and then load it from python using numpy." 28url { 29 src: "https://github.com/LaurentMazare/npy-ocaml/archive/0.0.7b.tar.gz" 30 checksum: [ 31 "sha256=4eac0cb50c01320f8ce18c45f070cd98f5f234d618427d5e2ba14dd806434cc5" 32 "md5=1f6a6fa9f13703624fd3ee9704494f9f" 33 ] 34}