File: buildout.cfg

package info (click to toggle)
python-btrees 6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,448 kB
  • sloc: python: 9,200; ansic: 7,020; makefile: 134
file content (41 lines) | stat: -rw-r--r-- 833 bytes parent folder | download | duplicates (4)
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