this repo has no description
1opam-version: "2.0"
2maintainer: "unixjunkie@sdf.org"
3authors: "Francois Berenger"
4homepage: "https://github.com/UnixJunkie/minicli"
5bug-reports: "https://github.com/UnixJunkie/minicli/issues"
6dev-repo: "git+https://github.com/UnixJunkie/minicli.git"
7build: [
8 ["dune" "build" "-p" name]
9 ["dune" "runtest" "-p" name] {with-test}
10]
11depends: [
12 "ocaml"
13 "dune" {< "2.0"}
14]
15synopsis: "Minimalist library for command line parsing"
16description: """
17minicli provides the CLI module.
18It allows programmers to quickly and correctly handle options passed via
19the command line to their program. minicli is intended at
20people who develop software fast, but who don't want to break things.
21minicli can throw a variety of informative exceptions to the end user,
22when the command line interface is not being used correctly.
23So that, the end user has a good chance to correct himself before calling
24for the software support team.
25Another design goals of minicli is to make command-line scientific programs
26harder to use incorrectly.
27"""
28url {
29 src: "https://github.com/UnixJunkie/minicli/archive/v5.0.0.tar.gz"
30 checksum: [
31 "sha256=66833cd577d672db9b580b8db1cdbb59596d66e380a6c6ee6eb2db5f2e4acffb"
32 "md5=0aa4a3ce11d9554c755cf75b6ba50237"
33 ]
34}