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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
[buildout]
parts =
pyramid
deploy
flake8
repl
sphinx
extensions =
buildout-versions
buildout_versions_file = versions.cfg
versions = versions
extends = versions.cfg
eggs-directory = eggs
download-cache = download-cache
relative-paths = true
install-from-cache = true
# Since our main deployment target is Ubuntu, all
# runtime dependencies should come from python packages.
include-site-packages = true
allowed-eggs-from-site-packages =
bzrlib
prefer-final = true
allow-picked-versions = false
develop = .
eggs =
charmworld
configobj
launchpadlib
pyramid
python-dateutil
pymongo
PyYAML
redis
webhelpers
xappy
venusian
[pyramid]
recipe = zc.recipe.egg
dependent-scripts = true
eggs =
${buildout:eggs}
ipdb
ipython
mock
pyramid_debugtoolbar
interpreter = py
scripts =
pserve
prequest
proutes
pserve
pshell
ptweens
pviews
pyreverse
test =
charmworld
[deploy]
recipe = zc.recipe.egg
dependent-scripts = true
eggs =
${buildout:eggs}
interpreter = py
scripts =
pserve = deploy
[flake8]
recipe = zc.recipe.egg
eggs =
flake8
entry-points =
flake8=flake8.run:main
[test]
recipe = zc.recipe.egg
eggs =
${pyramid:eggs}
coverage
nose
WebTest
mock
scripts =
nosetests
# Convenient REPLs with all eggs available.
[repl]
recipe = z3c.recipe.scripts
eggs =
${buildout:eggs}
ipython
extra-paths =
${buildout:directory}
interpreter = py
scripts = ipython=ipy
[sphinx]
recipe = collective.recipe.sphinxbuilder
source = ${buildout:directory}/docs
build = ${buildout:directory}/docs/_build
extra-paths =
${buildout:directory}
eggs =
sphinx
|