25 lines
619 B
Plaintext
25 lines
619 B
Plaintext
-r requirements.in
|
|
|
|
# testing runner, test reporting, packages used during testing (e.g. requests-mock), etc.
|
|
pytest
|
|
pytest-cov
|
|
|
|
# linting and other static code analysis
|
|
bandit==1.6.2 # pinned because 1.7.0 wasn't running right in tox
|
|
dlint
|
|
flake8
|
|
flake8-blind-except
|
|
flake8-builtins
|
|
flake8-docstrings
|
|
flake8-executable
|
|
flake8-fixme
|
|
flake8-isort
|
|
flake8-logging-format
|
|
flake8-mutable
|
|
|
|
# maintenance utilities and tox
|
|
pip-tools # pip-compile
|
|
tox # CI stuff
|
|
tox-wheel # build wheels in tox
|
|
versioneer # automatic version numbering
|