-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdune-project
More file actions
35 lines (26 loc) · 839 Bytes
/
Copy pathdune-project
File metadata and controls
35 lines (26 loc) · 839 Bytes
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
29
30
31
32
33
34
35
(lang dune 3.0)
(generate_opam_files true)
(name climate)
(source
(github gridbugs/climate))
(license MIT)
(authors "Stephen Sherratt <stephen@sherra.tt>")
(maintainers "Stephen Sherratt <stephen@sherra.tt>")
(cram enable)
(package
(name climate)
(synopsis "Declarative command-line parser for OCaml")
(description
"A library for parsing command-line arguments in a declarative style, where specifying the parser spec and assigning parsed arguments to variables in your program is done with the same code. Climate supports CLIs with nested subcommands, and can automatically generate help messages, manpages, and shell completion scripts.")
(depends
(ocaml
(>= 4.14))))
(package
(name climate_tests)
(synopsis "Tests for climate packages")
(depends
(ocaml
(>= 4.14))
climate
ppx_inline_test
ppx_expect))