-
Notifications
You must be signed in to change notification settings - Fork 10
/
buildout.cfg
54 lines (45 loc) · 876 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
51
52
53
54
[buildout]
extends =
https://raw.github.com/collective/buildout.plonetest/master/test-5.x.cfg
https://raw.github.com/collective/buildout.plonetest/master/qa.cfg
extensions = mr.developer
package-name = Products.PloneSurvey
develop = .
parts +=
lxml
test
omelette
instance
auto-checkout =
eggs =
Plone
Pillow
ipdb
iw.debug
plone.app.debugtoolbar
Products.PloneSurvey
[versions]
zc.buildout = >= 2.2.1
setuptools = >= 2.2
Pillow = >= 2.4.0
ipython = 4.0.0
coverage = 4.0.3
[test]
recipe = zc.recipe.testrunner
eggs +=
Products.PloneSurvey [test]
ipdb
[lxml]
recipe = z3c.recipe.staticlxml
egg = lxml
[omelette]
recipe = collective.recipe.omelette
eggs = ${buildout:eggs}
[instance]
recipe = plone.recipe.zope2instance
http-address = 8080
user = admin:admin
eggs = ${buildout:eggs}
zcml +=
iw.debug
[sources]