diff options
author | Marc Coquand <marcc@fastmail.fr> | 2023-12-02 09:49:42 -0600 |
---|---|---|
committer | Marc Coquand <marcc@fastmail.fr> | 2023-12-02 09:49:42 -0600 |
commit | 69d3f53365568524e18dfb1200a386309e174359 (patch) | |
tree | 30e465d36ea03bceb1f4e9b54aadfdb6d7093162 /dune-project | |
download | wormhole-69d3f53365568524e18dfb1200a386309e174359.tar.gz wormhole-69d3f53365568524e18dfb1200a386309e174359.tar.bz2 wormhole-69d3f53365568524e18dfb1200a386309e174359.zip |
Initial commit
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..35a8faf --- /dev/null +++ b/dune-project @@ -0,0 +1,26 @@ +(lang dune 3.11) + +(name wormhole) + +(generate_opam_files true) + +(source + (github username/reponame)) + +(authors "Author Name") + +(maintainers "Maintainer Name") + +(license LICENSE) + +(documentation https://url/to/documentation) + +(package + (name wormhole) + (synopsis "A short synopsis") + (description "A longer description") + (depends ocaml dune ppx_yojson_conv) + (tags + (topics "to describe" your project))) + +; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project |