-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopment.cfg
More file actions
149 lines (125 loc) · 2.86 KB
/
development.cfg
File metadata and controls
149 lines (125 loc) · 2.86 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
[buildout]
index = http://packages.lizardsystem.nl
extends =
http://packages.lizardsystem.nl/kgs/3.1.23/versions.cfg
server.cfg
find-links =
unzip = true
prefer-final = true
versions = versions
extensions =
mr.developer
buildout-versions
parts =
sysegg
mkdir
django
omelette
console_scripts
pyflakes
sphinx
pydev
${buildout:serverparts}
develop = .
eggs =
ddsc-worker
auto-checkout =
ddsc-core
[versions]
# Specific pins. We inherit lots of pins from the KGS, so if you add a
# development egg, you really need to un-pin it here.
ddsc-worker =
anyjson = 0.3.3
billiard = 2.7.3.32
cassandralib = 0.6
celery = 3.0.23
ddsc-logging = 0.1.1
gsconfig = 0.6.9
kombu = 2.5.14
lizard-security = ddsc-1.0
pandas = 0.10.1
tslib = 0.0.4
# Reported by buildout-versions
amqp = 1.0.13
flower = 0.5.2
httplib2 = 0.9
lockfile = 0.9.1
pika = 0.9.13
pycassa = 1.9.1
python-daemon = 1.6
python-magic = 0.4.3
redis = 2.8.0
thrift = 0.9.1
tornado = 3.1.1
xmltodict = 0.7.0
[sources]
cassandralib = git git@github.com:nens/cassandralib.git
ddsc-core = git git@github.com:ddsc/ddsc-core.git
ddsc-logging = git git@github.com:ddsc/ddsc-logging.git
lizard-security = git git@github.com:lizardsystem/lizard-security.git branch=ddsc
tslib = git git@github.com:nens/tslib.git
[sysegg]
# Add eggs here that are best handled through OS-level packages.
# For tslib dependencies, see https://github.com/nens/tslib.
recipe = osc.recipe.sysegg
force-sysegg = true
eggs =
lxml
numpy
psycopg2
[mkdir]
recipe = z3c.recipe.mkdir
paths =
${buildout:directory}/var/log
[serverconfig]
supervisor-port = 9031
[django]
# Sets up django for testing our application.
# See http://jacobian.org/writing/django-apps-with-buildout/
recipe = djangorecipe
wsgi = true
wsgilog = ${buildout:directory}/var/log/django.log
project = ddsc_worker
projectegg = ddsc_worker
settings = developmentsettings
test = ddsc_worker
eggs = ddsc-worker
[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}
celery
flower
# Development tools
createcoverage
pep8
zest.releaser
sitesetup
fabric
initialization =
import os
os.environ['DJANGO_SETTINGS_MODULE'] = '${django:project}.${django:settings}'
[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}
[pydev]
recipe = pb.recipes.pydev
eggs = ${buildout:eggs}
pydevproject_path = ${buildout:directory}/.pydevproject
extra_paths =