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 "np" {= "np1.18-0.3.0"}
21 "scipy" {= "sp1.4-0.3.0"}
22]
23build: [
24 [
25 "dune"
26 "build"
27 "-p"
28 name
29 "-j"
30 jobs
31 "@install"
32 "@doc" {with-doc}
33 ]
34]
35dev-repo: "git+https://github.com/lehy/ocaml-sklearn.git"
36url {
37 src: "https://github.com/lehy/ocaml-sklearn/archive/sk0.22-0.3.0.tar.gz"
38 checksum: [
39 "md5=6168f765a6303a52ef55b223a4ac751e"
40 "sha512=1b2c82ad3e0212574bc01b5226fab07f66ff98b580529a3c6a6d11bd74a7d78b21353e12bbbb385705fb316243b686879c5a4a2636a7a0addb81511a8b25ae5d"
41 ]
42}