forked from pcapriotti/optparse-applicative
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptparse-applicative.cabal
103 lines (89 loc) · 4.06 KB
/
optparse-applicative.cabal
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: optparse-applicative
version: 0.13.2.0
synopsis: Utilities and combinators for parsing command line options
description:
optparse-applicative is a haskell library for parsing options
on the command line, providing a powerful applicative interface
for composing these options.
.
optparse-applicative takes care of reading and validating the
arguments passed to the command line, handling and reporting
errors, generating a usage line, a comprehensive help screen,
and enabling context-sensitive bash completions.
.
See the included README for detailed instructions and examples,
which is also available on github
<https://github.com/pcapriotti/optparse-applicative>.
license: BSD3
license-file: LICENSE
author: Paolo Capriotti, Huw Campbell
maintainer: [email protected]
copyright: (c) 2012-2017 Paolo Capriotti <[email protected]>
category: System, CLI, Options, Parsing
build-type: Simple
cabal-version: >= 1.8
extra-source-files: CHANGELOG.md
README.md
tests/Examples/Alternatives.hs
tests/Examples/Cabal.hs
tests/Examples/Commands.hs
tests/Examples/Hello.hs
tests/Examples/Formatting.hs
tests/alt.err.txt
tests/cabal.err.txt
tests/carry.err.txt
tests/commands.err.txt
tests/commands_header.err.txt
tests/commands_header_full.err.txt
tests/dropback.err.txt
tests/hello.err.txt
tests/helponempty.err.txt
tests/helponemptysub.err.txt
tests/formatting.err.txt
tests/nested.err.txt
tests/subparsers.err.txt
homepage: https://github.com/pcapriotti/optparse-applicative
bug-reports: https://github.com/pcapriotti/optparse-applicative/issues
source-repository head
type: git
location: https://github.com/pcapriotti/optparse-applicative.git
library
if impl(ghc >= 8)
ghc-options: -Wall -Wno-redundant-constraints
else
ghc-options: -Wall
exposed-modules: Options.Applicative,
Options.Applicative.Arrows,
Options.Applicative.BashCompletion,
Options.Applicative.Builder,
Options.Applicative.Builder.Completer,
Options.Applicative.Builder.Internal,
Options.Applicative.Common,
Options.Applicative.Extra,
Options.Applicative.Help,
Options.Applicative.Help.Chunk,
Options.Applicative.Help.Core,
Options.Applicative.Help.Levenshtein,
Options.Applicative.Help.Pretty,
Options.Applicative.Help.Types,
Options.Applicative.Types,
Options.Applicative.Internal
build-depends: base == 4.*
, transformers >= 0.2 && < 0.6
, transformers-compat >= 0.3 && < 0.6
, process >= 1.0 && < 1.7
, ansi-wl-pprint >= 0.6.6 && < 0.7
if !impl(ghc >= 8)
build-depends: semigroups >= 0.10 && < 0.19
test-suite optparse-applicative-tests
type: exitcode-stdio-1.0
main-is: test.hs
ghc-options: -Wall -threaded -O2 -funbox-strict-fields
hs-source-dirs:
tests
build-depends: base
, bytestring == 0.10.*
, optparse-applicative
, QuickCheck >= 2.8 && < 2.11
if !impl(ghc >= 8)
build-depends: semigroups