blob: b5e5b87f9186d77fa77a410a8cba7ca868c685a9 (
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
25
26
27
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
|