libxml2dom

setup.py

230:dade52a8f756
2007-03-04 paulb [project @ 2007-03-04 09:56:20 by paulb] Accommodated ownerDocument change in the XPath code - this makes XSLForms work again for translations (i18n).
     1 #! /usr/bin/env python     2      3 from distutils.core import setup     4      5 import libxml2dom     6      7 setup(     8     name         = "libxml2dom",     9     description  = "PyXML-style API for the libxml2 Python bindings",    10     author       = "Paul Boddie",    11     author_email = "paul@boddie.org.uk",    12     url          = "http://www.boddie.org.uk/python/libxml2dom.html",    13     version      = libxml2dom.__version__,    14     packages     = ["libxml2dom", "libxml2dom.macrolib"],    15     scripts      = ["tools/libxml2macro.py"]    16     )