this repo has no description
1opam-version: "2.0" 2maintainer: "Leonid Rozenberg <leonidr@gmail.com>" 3authors: "Leonid Rozenberg <leonidr@gmail.com>" 4homepage: "https://github.com/hammerlab/oml/" 5dev-repo: "git+https://github.com/hammerlab/oml.git" 6bug-reports: "https://github.com/hammerlab/oml/issues" 7license: "Apache-2.0" 8build: [make "build"] 9install: [make "install"] 10remove: ["ocamlfind" "remove" "oml"] 11depends: [ 12 "ocaml" {>= "4.03" & < "4.10"} 13 "ocamlfind" {build} 14 "cppo" {build & >= "1.6.0"} 15 "cppo_ocamlbuild" {build} 16 "lacaml" 17 "lbfgs" 18 "ocephes" 19] 20conflicts : [ 21 "lacaml" { < "8.0.6" } 22 "lacaml" { >= "9.2.3" } 23 "lbfgs" { < "0.8.7" } 24 "ocephes" { < "0.8" } 25] 26synopsis: "An OCaml Math, Statistics, and ML Library" 27description: """ 28Common algorithms and procedures to perform exploratory data analysis, 29machine learning and mathematical simulations. 30 31This package wraps libraries that have C and Fortran bindings to numerical 32code. For an OCaml only version. See oml-lite.""" 33flags: light-uninstall 34url { 35 src: "https://github.com/hammerlab/oml/archive/0.0.6.tar.gz" 36 checksum: [ 37 "sha256=fdb5008e98c8b641c16f213f5b393cc8874dcbd663f72fb037594f064caed4ca" 38 "md5=6234bd8495da2693427cd1098ee45997" 39 ] 40}