root/plone4bio.buildout/trunk/config/plone3.cfg

Revision 204, 1.7 KB (checked in by mauro, 11 months ago)

* mr.developer
* plone 4.1

Line 
1[buildout]
2parts =
3    zope2
4    productdistros
5    instance
6    zopepy
7
8# New: this will pick up version settings for all the components.
9# Modify the "3.3.1" to match the version you're seeking.
10find-links =
11    http://dist.plone.org/release/3.3.4
12#    http://pypi.python.org/simple
13extends = http://dist.plone.org/release/3.3.4/versions.cfg
14versions = versions
15
16# eggs: Plone is now specified in the egg section. All the
17# dependencies are automatically handled.
18eggs =
19    Plone
20    biopython
21
22# Reference any eggs you are developing here, one per line
23# e.g.: develop = src/my.package
24develop =
25
26[plone4bio]
27eggs =
28    plone4bio.base
29    plone4bio.pscoils
30    plone4bio.biosql
31    plone4biotheme.base
32
33[versions]
34# zope.testing = 3.7.7
35# Cheetah = 2.2.1
36hexagonit.recipe.download = 1.2.1
37Markdown = 2.0.3
38
39# zope part: Note the new fake-eggs settings. This is required
40# for Zope dependencies to be resolved during buildout.
41[zope2]
42recipe = plone.recipe.zope2install
43url = ${versions:zope2-url}
44fake-zope-eggs = true
45additional-fake-eggs =
46    ZConfig
47    ZODB3
48    pytz
49skip-fake-eggs = zope.testing
50                 zope.interface
51                 zope.exceptions
52
53[instance]
54recipe = plone.recipe.zope2instance
55zope2-location = ${zope2:location}
56http-address = 8080
57user = admin:admin
58eggs =
59    ${buildout:eggs}
60    Products.PloneHotfix20110720
61zcml =
62products =
63    ${buildout:directory}/products
64extra-paths =
65    ${zope2:location}/lib/python
66
67[zopepy]
68recipe = zc.recipe.egg
69eggs = ${instance:eggs}
70interpreter = zopepy
71extra-paths =
72    ${zope2:location}/lib/python
73scripts = zopepy
74
75[productdistros]
76recipe = plone.recipe.distros
77urls =
78nested-packages =
79version-suffix-packages =
80
Note: See TracBrowser for help on using the browser.