libxml2dom

setup.py

235:98c4b591d9b0
2007-03-13 paulb [project @ 2007-03-13 00:16:45 by paulb] Added an adoptDocument method to Implementation classes, along with usage of the method in the libxml2dom.parse* functions. Expanded the SVG support slightly. Added an events module which, when complete, will provide events support for the SVG elements.
     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     )