this repo has no description
1opam-version: "2.0" 2synopsis: "Clustering library" 3description: 4 "Clustering with K-means, K-medoids and agglomerative clustering" 5maintainer: ["igarnier@protonmail.com"] 6authors: ["Ilias Garnier"] 7license: "MIT" 8homepage: "http://github.com/igarnier/prbnmcn-clustering" 9bug-reports: "http://github.com/igarnier/prbnmcn-clustering" 10depends: [ 11 "dune" {>= "2.8"} 12 "ocaml" {>= "4.08.0"} 13 "odoc" {with-doc} 14] 15build: [ 16 ["dune" "subst"] {dev} 17 [ 18 "dune" 19 "build" 20 "-p" 21 name 22 "-j" 23 jobs 24 "@install" 25 "@runtest" {with-test} 26 "@doc" {with-doc} 27 ] 28] 29dev-repo: "git+https://github.com/igarnier/prbnmcn-clustering" 30url { 31 src: "https://github.com/igarnier/prbnmcn-clustering/archive/0.0.1.tar.gz" 32 checksum: [ 33 "md5=a32385f08db7e94de4f167cf87b03df0" 34 "sha512=e0c9c281ccdcd5a10ed3ff6e74362aab10c44767fa6edc20f4f55e67843a5eb2efcbff5cb23052bfc3df752876151585ee4c76090f7b1fae77990f4acee81b69" 35 ] 36}