summaryrefslogtreecommitdiff
path: root/docs/buildout.rst
blob: da9c58a69122083339c93ce401abc7830b7778ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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