blob: b15e4b7464836fc379e5f347000334a18a54aaa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
|