Fix 'buildout.cfg' modification code
[zope-bootstrap.git] / skel-zope3 / buildout.cfg
1 [buildout]
2 install_from_cache = true
3 extends-cache = dlcache/extends
4 download_cache = dlcache/downloads
5 develop = .
6 newest = true
7 parts = app test
8 eggs-directory = downloads
9
10 # These settings pin egg versions to the Zope 3.4.0 Known Good Set
11 # if you want to upgrade the KGS version, you need to change the URL
12 # below. If you will comment/remove these settings, you'll get the
13 # latest versions of Zope eggs that are not guaranteed to work well
14 # together.
15 extends = http://download.zope.org/zope3.4/3.4.0/versions.cfg
16 versions = versions
17
18 [app]
19 recipe = zc.recipe.egg
20 eggs = appmain
21        zope.app.apidoc
22        zope.app.securitypolicy
23        z3c.evalexception>=2.0
24        Paste
25        PasteScript
26        PasteDeploy
27 interpreter = python
28
29 [test]
30 recipe = zc.recipe.testrunner
31 eggs = appmain
32 defaults = ['--tests-pattern', '^f?tests$', '-v']