libxml2dom

setup.py

240:ad3e17df1e84
2007-03-13 paulb [project @ 2007-03-13 19:33:06 by paulb] Fixed previousSibling, nextSibling, parentNode using a test for the result of the underlying function providing the libxml2 result for such operations. Reintroduced node comparisons. Added a getDOMImplementation function.
     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     )