-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathppx_factory.opam
33 lines (32 loc) · 1002 Bytes
/
ppx_factory.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
opam-version: "2.0"
maintainer: "Cryptosense <opensource@cryptosense.com>"
authors: [
"Cryptosense <opensource@cryptosense.com>"
"Nathan Rebours <nathan.p.rebours@gmail.com>"
]
homepage: "https://github.com/cryptosense/ppx_factory"
bug-reports: "https://github.com/cryptosense/ppx_factory/issues"
license: "BSD-2"
dev-repo: "git+https://github.com/cryptosense/ppx_factory.git"
doc: "https://cryptosense.github.io/ppx_factory/doc"
build: [
[ "dune" "build" "-p" name "-j" jobs ]
]
run-test: [
[ "dune" "runtest" "-p" name "-j" jobs ]
]
depends: [
"dune" {>= "1.1"}
"ocaml" {>= "4.07.0"}
"ounit" {with-test & >= "2.0.0"}
"ppxlib" {>= "0.14.0"}
"ppx_deriving" {with-test}
]
tags: ["org:cryptosense"]
synopsis: "PPX to derive factories and default values"
description: """
ppx_factory is a ppx deriver that builds factory method from record and variant type
definitions.
Factory methods allow you to build test values by only supplying the parts that are relevant
to your tests.
"""