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
52
53
54
55
|
[buildout]
extends = buildout.cfg
always-checkout = force
parts +=
ctags
flake8
sphinx
scripts
# omelette <-- disabled, buggy piece of $#$#@%#@
eggs +=
coverage
django-coverage
django-debug-toolbar
django-extensions
ipdb
ipython
[django]
settings = development
wsgi = false
[ctags]
recipe = z3c.recipe.tag:tags
eggs = ${buildout:eggs}
extra-paths = ${buildout:extra-paths}
[omelette]
recipe = collective.recipe.omelette
eggs = ${buildout:eggs}
[sphinx]
recipe = zc.recipe.egg
eggs =
${buildout:eggs}
Sphinx
extra-paths =
${buildout:extra-paths}
${buildout:directory}
${django:location}
scripts =
sphinx-build
[flake8]
recipe = zc.recipe.egg
eggs = flake8
entry-points =
flake8=flake8:main
[scripts]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
interpreter = python
|