libxml2dom

setup.py

256:85fbc707a9b9
2007-03-25 paulb [project @ 2007-03-25 01:59:19 by paulb] Fixed NamedNodeMap so that it actually produces attribute details instead of failing due to a missing impl attribute. Added documentElement to Document. Fixed the events module and added some functionality. Expanded the svg module's functionality. Updated release information.
     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     )