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.19-0.3.1"}
21 "scipy" {= "sp1.5-0.3.1"}
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"
36x-commit-hash: "bc83ed202843b89c48cda811bfeb0ee4e772783b"
37url {
38 src:
39 "https://github.com/lehy/ocaml-sklearn/releases/download/v0.3.1/sklearn-v0.3.1.tbz"
40 checksum: [
41 "sha256=48809d88893a3f17d79f8e5acbd28126de919b8ced6d1f6856a61fd6bfae571d"
42 "sha512=9e1d01c42aed436163b1ce50bee141f40cb5bc943d5dd16d6eb21f1b53d613933533c70f28675e418a550cf44e0cd66d47496e462132769b05dec64bf3db560c"
43 ]
44}