this repo has no description
1opam-version: "2.0"
2synopsis: "Scikit-learn machine learning library for OCaml"
3description: """
4Scikit-learn machine learning library for OCaml
5These are bindings to Python's scikit-learn machine learning library:
6- Simple and efficient tools for predictive data analysis
7- Accessible to everybody, and reusable in various contexts
8- Built on NumPy, SciPy, and matplotlib
9- Open source, commercially usable - BSD license
10"""
11maintainer: ["Ronan Le Hy <ronan.lehy@gmail.com>"]
12authors: ["Ronan Le Hy"]
13license: "BSD-3-Clause"
14homepage: "https://github.com/lehy/ocaml-sklearn"
15bug-reports: "https://github.com/lehy/ocaml-sklearn/issues"
16depends: [
17 "dune" {>= "2.4"}
18 "ocaml" {>= "4.07.1"}
19 "pyml" {>= "20200222"}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "@install"
31 "@doc" {with-doc}
32 ]
33]
34dev-repo: "git+https://github.com/lehy/ocaml-sklearn.git"
35url {
36 src: "https://github.com/lehy/ocaml-sklearn/archive/0.22-0.1.3.tar.gz"
37 checksum: [
38 "md5=9069738571ec0c95f5a4b805b5e4f528"
39 "sha512=fbd3f6cc249bbb8e7620f3731471f794f1eae0b1b34152c3b7f3a9a3245e34cdcf15501f09c799c98b085472eb0d7a24151b3178940295fd9a2f7063ee8b5499"
40 ]
41}