-
Notifications
You must be signed in to change notification settings - Fork 2
/
np.opam
35 lines (35 loc) · 811 Bytes
/
np.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
opam-version: "2.0"
version: "np1.19-0.3.1"
synopsis: "Fundamental scientific computing with Numpy for OCaml"
description: """
These are OCaml bindings to Numpy, the fundamental package for scientific computing with Python:
- powerful n-dimensional arrays
- numerical computing tools
- interoperable
- performant
- easy to use
- open source.
"""
maintainer: ["Ronan Le Hy <ronan.lehy@gmail.com>"]
authors: ["Ronan Le Hy"]
license: "BSD-3-Clause"
homepage: "https://github.com/lehy/ocaml-sklearn"
bug-reports: "https://github.com/lehy/ocaml-sklearn/issues"
depends: [
"dune" {>= "2.4"}
"ocaml" {>= "4.07.1"}
"pyml" {>= "20200222"}
]
build: [
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/lehy/ocaml-sklearn.git"