-
Notifications
You must be signed in to change notification settings - Fork 3
/
bam.opam
35 lines (35 loc) · 944 Bytes
/
bam.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A property-based testing library with internal shrinking"
description:
"A property-based testing allowing to define generators with internal shrinking easily"
maintainer: ["François Thiré <[email protected]>"]
authors: ["François Thiré <[email protected]>"]
license: "MIT"
tags: ["test" "pbt" "shrinking" "internal"]
homepage: "https://github.com/francoisthire/bam"
doc: "https://francoisthire.github.io/bam/"
bug-reports: "https://github.com/francoisthire/bam/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.7" & >= "3.7"}
"pringo"
"zarith" {>= "1.13"}
"odoc" {with-doc}
"tezt" {>= "4.0" & with-test}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/francoisthire/bam.git"