diff options
Diffstat (limited to 'dune-project')
| -rw-r--r-- | dune-project | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dune-project b/dune-project new file mode 100644 index 0000000..00fe620 --- /dev/null +++ b/dune-project | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | (lang dune 3.17) | ||
| 2 | |||
| 3 | (name rdcapsis) | ||
| 4 | |||
| 5 | (generate_opam_files true) | ||
| 6 | |||
| 7 | (source | ||
| 8 | (github username/reponame)) | ||
| 9 | |||
| 10 | (authors "Author Name <[email protected]>") | ||
| 11 | |||
| 12 | (maintainers "Maintainer Name <[email protected]>") | ||
| 13 | |||
| 14 | (license LICENSE) | ||
| 15 | |||
| 16 | (documentation https://url/to/documentation) | ||
| 17 | |||
| 18 | (package | ||
| 19 | (name rdcapsis) | ||
| 20 | (synopsis "A short synopsis") | ||
| 21 | (description "A longer description") | ||
| 22 | (depends ocaml zarith core dmap delimited_parsing re (utop :dev) (merlin :dev) (ocamlformat :dev)) | ||
| 23 | (tags | ||
| 24 | ("add topics" "to describe" your project))) | ||
| 25 | |||
| 26 | ; See the complete stanza docs at https://dune.readthedocs.io/en/stable/reference/dune-project/index.html | ||