2017-12-03 08:00:23 +01:00
|
|
|
[bdist_wheel]
|
|
|
|
universal = 1
|
|
|
|
|
|
|
|
[metadata]
|
|
|
|
# ensure LICENSE is included in wheel metadata
|
|
|
|
license_file = LICENSE
|
2017-11-29 05:14:51 +01:00
|
|
|
|
|
|
|
[pycodestyle]
|
|
|
|
# We exclude packages we don't maintain
|
2017-12-03 08:00:23 +01:00
|
|
|
exclude = .eggs,.tox,gntp,tweepy,pushjet
|
2018-12-16 22:15:55 +01:00
|
|
|
ignore = E722,W503,W504
|
2017-12-03 08:00:23 +01:00
|
|
|
statistics = true
|
|
|
|
|
2019-02-18 05:28:37 +01:00
|
|
|
[flake8]
|
|
|
|
# We exclude packages we don't maintain
|
|
|
|
exclude = .eggs,.tox,gntp,tweepy,pushjet
|
|
|
|
ignore = E722,W503,W504
|
|
|
|
statistics = true
|
|
|
|
|
2017-12-03 08:00:23 +01:00
|
|
|
[aliases]
|
|
|
|
test=pytest
|
2017-11-29 05:14:51 +01:00
|
|
|
|
2017-12-03 08:00:23 +01:00
|
|
|
[tool:pytest]
|
|
|
|
addopts = --verbose -ra
|
|
|
|
python_files = test/test_*.py
|
|
|
|
filterwarnings =
|
|
|
|
once::Warning
|
|
|
|
strict = true
|