Source: python-gflags Section: python Priority: optional Maintainer: Debian Python Modules Team Uploaders: Soren Hansen , Thomas Goirand , Chris Lamb , Build-Depends: debhelper-compat (= 12), dh-python, python3-all, python3-setuptools, Standards-Version: 4.5.0 Homepage: https://github.com/google/python-gflags Vcs-Git: https://salsa.debian.org/python-team/modules/python-gflags.git Vcs-Browser: https://salsa.debian.org/python-team/modules/python-gflags Testsuite: autopkgtest-pkg-python Rules-Requires-Root: no Package: python3-gflags Architecture: all Depends: ${misc:Depends}, ${python3:Depends}, Description: implementation of the Google command line flags module - Python 3.x GFlags defines a distributed command line system, replacing systems like getopt(), optparse and manual argument processing. Rather than an application having to define all flags in or near main(), each Python module defines flags that are useful to it. When one Python module imports another, it gains access to the other's flags. . It includes the ability to define flag types (boolean, float, integer, list), autogeneration of help (in both human and machine readable format) and reading arguments from a file. It also includes the ability to automatically generate man pages from the help flags. . This package provides the Python 3.x module.