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
|
Source: python-autocommand
Homepage: https://github.com/Lucretiel/autocommand
Section: python
Priority: optional
Maintainer: Jeroen Ploemen <jcfp@debian.org>
Uploaders: Debian Python Team <team+python@tracker.debian.org>
Build-Depends:
debhelper-compat (= 13),
dh-python,
python3-all,
python3-pytest <!nocheck>,
python3-setuptools,
pybuild-plugin-pyproject,
Standards-Version: 4.6.2
Vcs-Git: https://salsa.debian.org/python-team/packages/python-autocommand.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-autocommand
Rules-Requires-Root: no
Package: python3-autocommand
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: library to generate argparse parsers from function signatures
Autocommand is a library to automatically generate and run simple argparse
parsers from function signatures.
.
It turns a function into a command-line program, converting the function's
parameter signature into command-line arguments, and automatically running
the function with these arguments if the module was called as __main__.
Usage messages, invoked with -h or --help, are also created automatically.
|