Fix 'buildout.cfg' modification code
[zope-bootstrap.git] / skel-zope3 / buildout.cfg
diff --git a/skel-zope3/buildout.cfg b/skel-zope3/buildout.cfg
new file mode 100644 (file)
index 0000000..3a8eb92
--- /dev/null
@@ -0,0 +1,32 @@
+[buildout]
+install_from_cache = true
+extends-cache = dlcache/extends
+download_cache = dlcache/downloads
+develop = .
+newest = true
+parts = app test
+eggs-directory = downloads
+
+# These settings pin egg versions to the Zope 3.4.0 Known Good Set
+# if you want to upgrade the KGS version, you need to change the URL
+# below. If you will comment/remove these settings, you'll get the
+# latest versions of Zope eggs that are not guaranteed to work well
+# together.
+extends = http://download.zope.org/zope3.4/3.4.0/versions.cfg
+versions = versions
+
+[app]
+recipe = zc.recipe.egg
+eggs = appmain
+       zope.app.apidoc
+       zope.app.securitypolicy
+       z3c.evalexception>=2.0
+       Paste
+       PasteScript
+       PasteDeploy
+interpreter = python
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = appmain
+defaults = ['--tests-pattern', '^f?tests$', '-v']