root/buildout/owslib.buildout/trunk/buildout.cfg

Revision 801, 0.7 KB (checked in by dokai, 3 years ago)

OWSLib buildout

Line 
1[buildout]
2index = http://download.zope.org/ppix
3parts = 
4    python-2.4
5    interpreter
6    test
7python = custom-python
8develop =
9    src/OWSLib
10
11[python-2.4]
12recipe = hexagonit.recipe.cmmi
13url = http://www.python.org/ftp/python/2.4.4/Python-2.4.4.tgz
14configure-options =
15    --with-threads
16    --with-readline
17
18[python-2.5]
19recipe = hexagonit.recipe.cmmi
20url = http://www.python.org/ftp/python/2.5.1/Python-2.5.1.tgz
21configure-options =
22    --with-threads
23    --with-readline
24
25[custom-python]
26executable = ${python-2.4:location}/bin/python
27
28[interpreter]
29recipe = zc.recipe.egg
30eggs =
31    OWSLib
32    elementtree
33interpreter = python
34
35
36[test]
37recipe = zc.recipe.testrunner
38eggs =
39    OWSLib
40    elementtree
41defaults = [ '--auto-color', '-v']
Note: See TracBrowser for help on using the browser.