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
|
[buildout]
eggs =
persistent
zope.interface
parts =
w_persistent
develop
test
test_w_zodb
scripts
[w_persistent]
# Generate an interpreter w/ persistent installed, so that the
# 'develop' phase doesn't faux-install the eggs in the root and
# screw up the reset of the bulidout.
recipe = zc.recipe.egg
interpreter = w_persistent
eggs = persistent
[develop]
recipe = zc.recipe.egg:develop
setup = .
executable = ${buildout:bin-directory}/w_persistent
# Force the :develop recipe to prefer the excecutable defined in this section.
python = develop
[test]
recipe = zc.recipe.testrunner
eggs = BTrees [test]
${buildout:eggs}
defaults = ['-sBTrees']
[test_w_zodb]
<= test
eggs = BTrees [test,ZODB]
${buildout:eggs}
[scripts]
recipe = zc.recipe.egg
eggs = ${test_w_zodb:eggs}
interpreter = py
|