forked from pombredanne/flooding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
development.cfg
170 lines (158 loc) · 3.55 KB
/
development.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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
[buildout]
index = http://packages.lizardsystem.nl
find-links =
unzip = true
prefer-final = true
extends =
http://packages.lizardsystem.nl/kgs/3.0.11/versions.cfg
server.cfg
show-picked-versions = true
extensions =
mr.developer
auto-checkout =
gislib
parts =
sysegg
mkdir
# geos
# gdal
django
omelette
console_scripts
pydev
pyflakes
pylint
${buildout:serverparts}
develop = .
eggs =
flooding
pyparsing
[versions]
# Specific pins
Django = 1.6.6
# Reported by buildout
Flask = 0.10.1
Markdown = 2.2.0
Pillow = 2.5.1
astroid = 1.1.1
collective.recipe.supervisor = 0.19
django-appconf = 0.6
django-compressor = 1.4
django-debug-toolbar = 0.9.4
django-excel-response = 1.0
django-extensions = 1.3.8
django-markdown-deux = 1.0.4
django-nose = 1.2
djangorecipe = 1.10
factory-boy = 2.4.1
flooding =
flooding-lib = 3.32
gunicorn = 19.0.0
itsdangerous = 0.24
lizard-raster = 0.3
lizard-worker = 0.11
logilab-common = 0.62.0
markdown2 = 2.2.1
matplotlib =
mock = 0.8.0
nens = 1.12
netcdf4 = 1.0.4
nose = 1.3.3
pb.recipes.pydev = 0.4.5
pika = 0.9.8
pylint = 1.2.1
pyparsing = 1.5.6
pyproj = 1.9.3
raven = 5.0.0
setuptools = 18.2
sitesetup = 0.11
six = 1.7.3
syseggrecipe = 1.2
xlrd = 0.9.3
xlwt = 0.7.5
z3c.recipe.usercrontab = 1.1
zc.buildout = 2.4.3
zc.recipe.egg = 2.0.2
[sources]
flooding-base = git [email protected]:lizardsystem/flooding-base.git
flooding-lib = git [email protected]:lizardsystem/flooding-lib.git
lizard-worker = git [email protected]:lizardsystem/lizard-worker.git
gislib = git [email protected]:nens/gislib.git branch=flooding-branch
lizard-raster = git [email protected]:lizardsystem/lizard-raster.git
lizard-ui = git [email protected]:lizardsystem/lizard-ui.git
[sysegg]
# Add eggs here that are best handled through OS-level packages.
# In my testing so far, Ubuntu 12.04 needs the matplotlib sysegg,
# and 14.04 only works without it!
recipe = syseggrecipe
force-sysegg = true
eggs =
numpy
scipy
GDAL
matplotlib
[mkdir]
recipe = z3c.recipe.mkdir
paths =
${buildout:directory}/var/static
${buildout:directory}/var/media
${buildout:directory}/var/log
${buildout:directory}/var/sqlite
${buildout:directory}/var/external_data
${buildout:directory}/var/generated_icons
# ${buildout:directory}/var/ror_keringen
# ${buildout:directory}/var/ror_keringen/applied
# ${buildout:directory}/var/ror_keringen/not_applied
[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 = flooding
projectegg = flooding
settings = developmentsettings
test = flooding
eggs = flooding
[console_scripts]
recipe = zc.recipe.egg
interpreter = python
eggs =
${buildout:eggs}
# Development tools
eazysvn
pep8
zest.releaser
fabric
sitesetup
coverage
gunicorn
[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'
[omelette]
# Creates a nice parts/omelette with our used eggs
recipe = collective.recipe.omelette
eggs = ${buildout:eggs}
[pydev]
recipe = pb.recipes.pydev
eggs = ${buildout:eggs}
pydevproject_path = ${buildout:directory}/.pydevproject
extra_paths =
[serverconfig]
gunicorn-port = 9200
supervisor-port = 9201
sitename = flooding.lizard.net
[pylint]
recipe = zc.recipe.egg
eggs =
${buildout:eggs}
pylint
entry-points = pylint=pylint.lint:Run
arguments = sys.argv[1:]