-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathminicli.opam
31 lines (31 loc) · 1.09 KB
/
minicli.opam
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
opam-version: "2.0"
maintainer: "[email protected]"
authors: "Francois Berenger"
homepage: "https://github.com/UnixJunkie/minicli"
bug-reports: "https://github.com/UnixJunkie/minicli/issues"
dev-repo: "git+https://github.com/UnixJunkie/minicli.git"
build: [
["dune" "build" "-p" name]
["dune" "runtest" "-p" name] {with-test}
]
depends: [
"ocaml"
"dune"
]
synopsis: "Minimalist library for command line parsing"
description: """
minicli provides the CLI module.
It allows programmers to quickly and correctly handle options passed via
the command line to their program. minicli is intended at
people who develop software fast, but who don't want to break things.
minicli can throw a variety of informative exceptions to the end user,
when the command line interface is not being used properly.
So that, the end user has a good chance to correct himself before calling
the software support team.
Another design goal of minicli is to make command-line scientific programs
harder to use incorrectly.
"""
# url {
# src: "https://github.com/UnixJunkie/minicli/archive/vXXX.tar.gz"
# checksum: "md5=YYY"
# }