diff --git a/dune-project b/dune-project index 5de86c6..9888574 100644 --- a/dune-project +++ b/dune-project @@ -1,11 +1,16 @@ (lang dune 3.0) (generate_opam_files true) + (name climate) -(source (github gridbugs/climate)) +(source + (github gridbugs/climate)) + (license MIT) + (authors "Stephen Sherratt ") + (maintainers "Stephen Sherratt ") (cram enable) @@ -14,20 +19,24 @@ (name climate) (synopsis "Declarative command-line parser for OCaml") (depends - (ocaml (>= 4.14)))) + (ocaml + (>= 4.14)))) (package (name climate_cmdliner) (synopsis "Implements a subset of cmdliner's interface using climate") (depends - (ocaml (>= 4.14)) - (climate (= :version)))) + (ocaml + (>= 4.14)) + (climate + (= :version)))) (package (name climate_tests) (synopsis "Tests for climate packages") (depends - (ocaml (>= 4.14)) - climate - ppx_inline_test - ppx_expect)) + (ocaml + (>= 4.14)) + climate + ppx_inline_test + ppx_expect))