flake8/setup.cfg
Ian Cordasco 33f982b446 Rely on Python 3.4 backport of configparser
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
2016-05-30 12:51:31 -05:00

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