1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "A short synopsis"
4description: "A longer description"
5maintainer: ["Maintainer Name <maintainer@example.com>"]
6authors: ["Author Name <author@example.com>"]
7license: "LICENSE"
8tags: ["add topics" "to describe" "your" "project"]
9homepage: "https://github.com/username/reponame"
10doc: "https://url/to/documentation"
11bug-reports: "https://github.com/username/reponame/issues"
12depends: [
13 "dune" {>= "3.17"}
14 "ocaml"
15 "odoc" {with-doc}
16]
17build: [
18 ["dune" "subst"] {dev}
19 [
20 "dune"
21 "build"
22 "-p"
23 name
24 "-j"
25 jobs
26 "@install"
27 "@runtest" {with-test}
28 "@doc" {with-doc}
29 ]
30]
31dev-repo: "git+https://github.com/username/reponame.git"