forked from jaap3/sourcebuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
51 lines (43 loc) · 1.14 KB
/
buildout.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[buildout]
parts = python
tox
coverage
pep8
pyflakes
pylint
zc.rst2
zest.releaser
develop = .
eggs = sourcebuilder
[python]
recipe = zc.recipe.egg:script
interpreter = python
eggs = ${buildout:eggs}
[tox]
recipe = zc.recipe.egg:script
eggs = tox
${buildout:eggs}
[coverage]
recipe = zc.recipe.egg:scripts
eggs = coverage
${buildout:eggs}
[pep8]
recipe = zc.recipe.egg:scripts
eggs = pep8
[pyflakes]
recipe = zc.recipe.egg:scripts
eggs = pyflakes
entry-points = pyflakes=pyflakes.scripts.pyflakes:main
[pylint]
recipe = zc.recipe.egg:scripts
eggs = pylint
${buildout:eggs}
scripts = pylint
entry-points = pylint=pylint.lint:Run
arguments = ['sourcebuilder'] + sys.argv[1:]
[zc.rst2]
recipe = zc.recipe.egg:scripts
eggs = zc.rst2
[zest.releaser]
recipe = zc.recipe.egg:scripts
eggs = zest.releaser