diff options
Diffstat (limited to 'dune-project')
-rw-r--r-- | dune-project | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dune-project b/dune-project new file mode 100644 index 0000000..b15e4b7 --- /dev/null +++ b/dune-project @@ -0,0 +1,24 @@ +(lang dune 3.11) + +(name stitch) + +(generate_opam_files true) + + +(authors "Marc Coquand") + +(maintainers "Marc Coquand") + +(license BSD-3-Clause) + +(documentation https://url/to/documentation) + +(package + (name stitch) + (synopsis "A Note Composer") + (description "A minimal CLI tool that allows you to compose notes together. Useful as part of a bigger system for building a PKM.") + (depends ocaml dune cmdliner notty lambda-term shexp) + (tags + (productivity minimal))) + +; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project |