mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-30 18:56:53 +00:00
21 lines
557 B
ReStructuredText
21 lines
557 B
ReStructuredText
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
|