this repo has no description
1opam-version: "2.0" 2bug-reports: "https://github.com/LaurentMazare/ocaml-dataframe/issues" 3homepage: "https://github.com/LaurentMazare/ocaml-dataframe" 4dev-repo: "git+https://github.com/LaurentMazare/ocaml-dataframe.git" 5maintainer: "Laurent Mazare <lmazare@gmail.com>" 6authors: [ "Laurent Mazare" ] 7 8build: [["dune" "build" "-j" jobs "-p" name]] 9 10run-test: [ 11 ["dune" "runtest" "-p" name "-j" jobs] 12] 13 14depends: [ 15 "base" {>= "v0.12.0" & < "v0.14"} 16 "csv" 17 "dune" {>= "1.3.0"} 18 "ocaml" {>= "4.07"} 19 "ocaml-compiler-libs" 20 "ppx_expect" {< "v0.14"} 21 "ppx_let" {< "v0.14"} 22 "stdio" {< "v0.14"} 23] 24 25synopsis: "A simple and type-safe dataframe api in pure ocaml" 26description: """ 27A simple and (reasonably) type-safe dataframe api in pure ocaml 28""" 29 30url { 31 src: "https://github.com/LaurentMazare/ocaml-dataframe/archive/0.1b.tar.gz" 32 checksum: [ 33 "md5=f48e0434cf98e128921c3abb5fec0ca1" 34 "sha512=4d568304629225424d40bd2c2beff93839dbcdb2bc512d00a1551bbe929c12b5085397b6565a285dd71c4d6c0b8a66efc682a38767f5566f15bdb3f17a7dda8a" 35 ] 36}