buildout.cfg 790 Bytes
Newer Older
1 2
[buildout]
extends =
Łukasz Nowak's avatar
Łukasz Nowak committed
3 4 5
  ../libxml2/buildout.cfg
  ../libxslt/buildout.cfg
  ../zlib/buildout.cfg
6 7 8 9 10 11 12 13 14 15

parts =
  lxml-python

[lxml-python-env]
PATH = ${libxslt:location}/bin:%(PATH)s

[lxml-python]
recipe = zc.recipe.egg:custom
egg = lxml
16 17 18 19 20 21 22 23 24 25 26 27

# Note: Workaround lxml.de issues blocking buildout runs
# Empty index makes setuptools NOT trying to find any meta information about
# lxml...
index =
# ...so it is wise to tell where lxml can be found
find-links =
  http://pypi.python.org/pypi/lxml/2.2.8
  http://pypi.python.org/pypi/lxml/2.3
# Note: Whenever someone is going to remove it, one shall check, that buildout
# can run in newest mode, without any locally downloaded cache

28 29 30 31 32
rpath =
  ${libxml2:location}/lib/
  ${libxslt:location}/lib/
  ${zlib:location}/lib/
environment = lxml-python-env