51 lines
758 B
Plaintext
51 lines
758 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
|
|
;; development env
|
|
utop
|
|
ocaml-lsp-server
|
|
ocamlformat
|
|
|
|
;; deps
|
|
ocaml
|
|
dune
|
|
re
|
|
containers
|
|
iter
|
|
dune-site
|
|
angstrom
|
|
|
|
;; ppx
|
|
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
|