aboutsummaryrefslogtreecommitdiff
path: root/python/python3-click-option-group/slack-desc
diff options
context:
space:
mode:
authorJeremy Hansen <jebrhansen+SBo@gmail.com>2024-06-26 07:25:17 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2024-06-26 07:36:55 +0700
commitfce98ac2159d41eed8a20c680391983cd5dcd4a3 (patch)
treeda5d2d264f0ff716589f8928936a4153a095d30d /python/python3-click-option-group/slack-desc
parenta361547ecee0a29c9f9c51c4014f140f406266f1 (diff)
python/python3-click-option-group: Added (CLI in python).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-click-option-group/slack-desc')
-rw-r--r--python/python3-click-option-group/slack-desc19
1 files changed, 19 insertions, 0 deletions
diff --git a/python/python3-click-option-group/slack-desc b/python/python3-click-option-group/slack-desc
new file mode 100644
index 0000000000..5548733459
--- /dev/null
+++ b/python/python3-click-option-group/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description.
+# Line up the first '|' above the ':' following the base package name, and
+# the '|' on the right side marks the last column you can put a character in.
+# You must make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':' except on otherwise blank lines.
+
+ |-----handy-ruler------------------------------------------------------|
+python3-click-option-group: python3-click-option-group (Option groups missing in Click)
+python3-click-option-group:
+python3-click-option-group: Click is a package for creating powerful and beautiful command line
+python3-click-option-group: interfaces (CLI) in Python, but it has no the functionality for
+python3-click-option-group: creating option groups.
+python3-click-option-group:
+python3-click-option-group: Option groups are convenient mechanism for logical structuring
+python3-click-option-group: CLI, also it allows you to set the specific behavior and set the
+python3-click-option-group: relationship among grouped options (mutually exclusive options
+python3-click-option-group: for example). Moreover, argparse stdlib package contains this
+python3-click-option-group: functionality out of the box.