mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-30 18:56:53 +00:00
17 lines
319 B
ReStructuredText
17 lines
319 B
ReStructuredText
Buildout integration
|
|
=====================
|
|
|
|
In order to use Flake8 inside a buildout, edit your buildout.cfg and add this::
|
|
|
|
[buildout]
|
|
|
|
parts +=
|
|
...
|
|
flake8
|
|
|
|
[flake8]
|
|
recipe = zc.recipe.egg
|
|
eggs = flake8
|
|
${buildout:eggs}
|
|
entry-points =
|
|
flake8=flake8.main:main
|