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
|
Source: python-typeguard
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Joel Cross <joel@kazbak.co.uk>
Build-Depends:
debhelper-compat (= 13),
dh-sequence-python3,
python3-all,
pybuild-plugin-pyproject,
python3-pytest,
mypy,
python3-setuptools,
python3-setuptools-scm,
python3-typing-extensions (>= 4.14.0),
Rules-Requires-Root: no
Standards-Version: 4.7.0
Homepage: https://github.com/agronholm/typeguard
Vcs-Git: https://salsa.debian.org/python-team/packages/python-typeguard.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-typeguard
Testsuite: autopkgtest-pkg-pybuild
Package: python3-typeguard
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: Run-time type checker for Python
This library provides run-time type checking for functions defined with
argument type annotations. This can be done in one of three ways:
* calling check_argument_types() from within the function body
* decorating the function with @typechecked
* using `with TypeChecker('packagename')`
.
This package installs the library for Python 3.
|