-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbitgenerators.opam
40 lines (40 loc) · 1.04 KB
/
bitgenerators.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
36
37
38
39
40
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "v0.1.0"
synopsis: "PRNG bitgenerators for OCaml users"
description:
"A purely functional port of numpy's random bitgenerator interface for OCaml users"
maintainer: ["Zolisa Bleki"]
authors: ["Zolisa Bleki"]
license: "BSD-3-Clause"
tags: ["scientific computing" "psuedo-random numbers"]
homepage: "https://github.com/zoj613/bitgenerators"
doc: "https://zoj613.github.io/bitgenerators/bitgenerators/Bitgen/index.html"
bug-reports: "https://github.com/zoj613/bitgenerators/issues"
depends: [
"ocaml" {>= "4.14.0"}
"dune" {>= "3.14"}
"stdint"
"odoc" {with-doc}
"bisect_ppx" {dev & >= "2.5.0" & with-test}
"ounit2" {with-test}
"csv" {with-test}
"core_bench" {dev & >= "0.16.0"}
"testu01" {dev}
]
conflicts: ["ocaml-option-bytecode-only"]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/zoj613/bitgenerators.git"