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.2.0.tar.gz"
37 checksum: [
38 "md5=5219c6159701b598f4df2656f48f7dc3"
39 "sha512=2ab4806b05c01ce429fbac6b64cba038f29d3f06553a3bafe64679589bea9e6096ca2a3c1b65b13c4a527645edb367d310475c4d310a50d8415b972cb7cb4b86"
40 ]
41}