42 lines
668 B
Plaintext
42 lines
668 B
Plaintext
(lang dune 3.10)
|
|
|
|
(name aoc)
|
|
|
|
(generate_opam_files true)
|
|
|
|
(source
|
|
(github username/reponame))
|
|
|
|
(authors "Author Name")
|
|
|
|
(maintainers "Maintainer Name")
|
|
|
|
(license LICENSE)
|
|
|
|
(documentation https://url/to/documentation)
|
|
|
|
(using dune_site 0.1)
|
|
|
|
(package
|
|
(name aoc)
|
|
(synopsis "A short synopsis")
|
|
(description "A longer description")
|
|
(depends
|
|
ocaml
|
|
dune
|
|
re
|
|
containers
|
|
iter
|
|
dune-site
|
|
angstrom
|
|
ppx_deriving
|
|
ppx_deriving_hash
|
|
ppx_regexp
|
|
ppx_expect
|
|
ppx_inline_test)
|
|
(sites (lib inputs))
|
|
(tags
|
|
(topics "to describe" your project)))
|
|
|
|
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|