diff options
Diffstat (limited to 'dune-project')
-rw-r--r-- | dune-project | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dune-project b/dune-project new file mode 100644 index 0000000..b5e5b87 --- /dev/null +++ b/dune-project @@ -0,0 +1,28 @@ +(lang dune 3.10) +(using menhir 2.0) + +(name qsp_parser) + +(generate_opam_files true) +(implicit_transitive_deps true) + +(source + (github username/reponame)) + +(authors "Chimrod") + +(maintainers "Chimrod") + +(license LICENSE) + +(documentation https://url/to/documentation) + +(package + (name qsp_parser) + (synopsis "A short synopsis") + (description "A longer description") + (depends ocaml dune) + (tags + (topics "to describe" your project))) + +; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project |