-
Notifications
You must be signed in to change notification settings - Fork 0
/
tap.opam
24 lines (24 loc) · 951 Bytes
/
tap.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
["dune" "build" "-p" name "@doc"] {with-doc}
]
maintainer: ["Aaron L. Zeng <[email protected]>"]
authors: ["Aaron L. Zeng <[email protected]>"]
bug-reports: "https://github.com/bcc32/tap/issues"
homepage: "https://github.com/bcc32/tap"
doc: "https://github.com/bcc32/tap"
license: "MIT"
version: "0.1"
dev-repo: "git+https://github.com/bcc32/tap.git"
synopsis: "Test Anything Protocol for OCaml"
description:
"TAP, the Test Anything Protocol, is a simple text-based interface between testing modules in a test harness. TAP started life as part of the test harness for Perl but now has implementations in C, C++, Python, PHP, Perl, Java, JavaScript, and others."
depends: [
"ocaml" {>= "4.04.2"}
"base" {>= "v0.12.0"}
"stdio" {>= "v0.12.0"}
]