This commit is contained in:
Ian Cordasco 2013-02-22 23:18:15 -05:00
parent 50e3ce9c78
commit 257eae684e
12 changed files with 691 additions and 1 deletions

21
docs/setuptools.rst Normal file
View file

@ -0,0 +1,21 @@
setuptools integration
======================
If setuptools is available, Flake8 provides a command that checks the
Python files declared by your project. To use it, add flake8 to your
setup_requires::
setup(
name="project",
packages=["project"],
setup_requires=[
"flake8"
]
)
Running ``python setup.py flake8`` on the command line will check the
files listed in your ``py_modules`` and ``packages``. If any warning
is found, the command will exit with an error code::
$ python setup.py flake8