mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 18:46:52 +00:00
Python 2.7's ConfigParser module does not allow for the behaviour we have documented for config files in Flake8 3.0. To compensate for that, we add a dependency on the configparser backport on PyPI for Python 2.7
14 lines
224 B
INI
14 lines
224 B
INI
[aliases]
|
|
test=pytest
|
|
|
|
[bdist_wheel]
|
|
universal=1
|
|
|
|
[metadata]
|
|
requires-dist =
|
|
enum34; python_version<"3.4"
|
|
configparser; python_version<"3.2"
|
|
|
|
[pytest]
|
|
norecursedirs = .git .* *.egg* old docs dist build
|
|
addopts = -rw
|