diff options
author | Marc Coquand <marc@mccd.space> | 2024-05-13 11:00:47 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-05-13 11:00:47 -0500 |
commit | 121a6a376209de3f5a9474bf03721e2032a73e01 (patch) | |
tree | 6f02ffa1695510aa9227a9290abac11811b25373 /dune-project | |
download | stitch-121a6a376209de3f5a9474bf03721e2032a73e01.tar.gz stitch-121a6a376209de3f5a9474bf03721e2032a73e01.tar.bz2 stitch-121a6a376209de3f5a9474bf03721e2032a73e01.zip |
initial commit
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 |