python-tuf/setup.cfg
Teodora Sechkova 191a1e5e3d
Add type annotations to download.py and fetcher.py
Add the stub for the requests package (types-requests)
to requirements-tests.txt.

Add urllib3 to the ignored imports. The project seems
to have added type annotations already but has not
released a version including them yet.

Signed-off-by: Teodora Sechkova <tsechkova@vmware.com>
2021-08-27 11:49:49 +03:00

27 lines
457 B
INI

[wheel]
universal = 1
[check-manifest]
ignore =
requirements-dev.txt
.travis.yml
.coveragerc
[mypy]
warn_unused_configs = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unreachable = True
strict_equality = True
disallow_untyped_defs = True
disallow_untyped_calls = True
files =
tuf/api/,
tuf/ngclient,
tuf/exceptions.py
[mypy-securesystemslib.*]
ignore_missing_imports = True
[mypy-urllib3.*]
ignore_missing_imports = True