-
Notifications
You must be signed in to change notification settings - Fork 1
/
buildout.cfg
48 lines (43 loc) · 883 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
[buildout]
extends = versions.cfg
index = http://d.pypi.python.org/simple
parts =
pyramid
wsgi
omelette
test
eggs =
extensions =
mr.developer
buildout.dumppickedversions
unzip = true
auto-checkout =
github3
develop = .
versions = versions
[sources]
github3 = git git://github.com/kennethreitz/python-github3.git
[omelette]
recipe = collective.recipe.omelette
eggs = github3
collective.pullrequestreview
webtest
[pyramid]
recipe = zc.recipe.egg
dependent-scripts = true
eggs =
collective.pullrequestreview
interpreter = py
[test]
recipe = zc.recipe.egg
initialization = import os; os.chdir('${buildout:directory}')
eggs =
nose
ipdb
# collective.pullrequestreview[test]
scripts =
nosetests=test
[wsgi]
recipe = minitage.recipe.wsgi
config-file = ${buildout:directory}/production.ini
eggs = collective.pullrequestreview