-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
50 lines (44 loc) · 995 Bytes
/
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
[buildout]
extensions =
mr.developer
include-site-packages = false
allow-hosts = *.python.org
show-picked-versions = true
parts =
sgdfrontend
test
sgdfrontend_wsgiapp
develop = .
[sources]
behave = git https://github.com/behave/behave.git
behaving = git https://github.com/ggozad/behaving.git
# See: https://github.com/Pylons/pyramid/pull/1004
pyramid = git https://github.com/lrowe/pyramid.git
pyramid_multiauth = git https://github.com/mozilla-services/pyramid_multiauth.git
webtest = git https://github.com/Pylons/webtest.git
[versions]
# Hand set versions
pyramid = 1.5
waitress = 0.8.10
setuptools= 12.1
[sgdfrontend]
recipe = zc.recipe.egg
eggs =
sgdfrontend
pyramid
waitress
interpreter = py
[test]
recipe = zc.recipe.egg
eggs =
sgdfrontend[test]
nose
scripts =
py.test=test
[sgdfrontend_wsgiapp]
recipe = collective.recipe.modwsgi
eggs =
sgdfrontend
pyramid
waitress
config-file = ${buildout:directory}/sgdfrontend_production.ini