-
Notifications
You must be signed in to change notification settings - Fork 2
/
buildout.cfg
75 lines (63 loc) · 1.23 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[buildout]
find-links =
unzip = true
prefer-final = true
versions = versions
extensions =
mr.developer
buildout-versions
parts =
sysegg
test
omelette
console_scripts
pyflakes
sphinx
develop = .
eggs =
crumble
[versions]
# Specific pins
# Reported by buildout-versions
buildout-versions = 1.5
zc.buildout = 1.4.4
zc.recipe.egg = 1.2.2
[sysegg]
# Add eggs here that are best handled through OS-level packages.
recipe = osc.recipe.sysegg
force-sysegg = true
eggs =
numpy
PIL
[test]
recipe = pbp.recipe.noserunner
eggs = crumble
defaults = crumble
[omelette]
# Creates a nice parts/omelette with our used eggs
recipe = collective.recipe.omelette
eggs = ${buildout:eggs}
[console_scripts]
recipe = zc.recipe.egg
interpreter = python
eggs =
${buildout:eggs}
# Development tools
eazysvn
coverage
pep8
zest.releaser
[pyflakes]
# Hairy way to install pyflakes: old-style distutils script.
recipe = zc.recipe.egg
scripts =
pyflakes
eggs =
pyflakes
entry-points = pyflakes=pkg_resources:run_script
arguments = 'pyflakes', 'pyflakes'
[sphinx]
recipe = collective.recipe.sphinxbuilder
source = ${buildout:directory}/doc/source
build = ${buildout:directory}/doc/build
eggs = ${buildout:eggs}