-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
51 lines (44 loc) · 1.25 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 = project
coverage
django
omelette
pep8
pyflakes
zc.rst2
zest.releaser
develop = .
eggs = Django
django_friendly_tag_loader
[project]
recipe = zc.recipe.egg
interpreter = python
eggs = tox
${buildout:eggs}
[django]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
extra-paths = tests
entry-points = manage=django.core.management:execute_from_command_line
initialization = import os; os.environ.setdefault("DJANGO_SETTINGS_MODULE", "testproject.settings")
[coverage]
recipe = zc.recipe.egg:scripts
eggs = coverage
${buildout:eggs}
[omelette]
recipe = collective.recipe.omelette
eggs = ${buildout:eggs}
ignore-develop = True
[pep8]
recipe = zc.recipe.egg:scripts
eggs = pep8
[pyflakes]
recipe = zc.recipe.egg:scripts
eggs = pyflakes
entry-points = pyflakes=pyflakes.scripts.pyflakes:main
[zc.rst2]
recipe = zc.recipe.egg:scripts
eggs = zc.rst2
[zest.releaser]
recipe = zc.recipe.egg:scripts
eggs = zest.releaser