libxml2dom

setup.py

227:96fcbc99f658
2007-03-02 paulb [project @ 2007-03-02 22:56:00 by paulb] Fixed exceptions, adding document checking for insertion and replacement operations and raising exceptions.
     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     )