XSLTools

setup.py

350:2b2b93f32e2b
2005-10-25 paulb [project @ 2005-10-25 17:50:19 by paulb] Added a method which removes the contents of collections.
     1 #! /usr/bin/env python     2      3 from distutils.core import setup     4      5 import XSLForms     6      7 setup(     8     name         = "XSLTools",     9     description  = "Modules and packages for the development of XML/XSL-based applications",    10     author       = "Paul Boddie",    11     author_email = "paul@boddie.org.uk",    12     url          = "http://www.boddie.org.uk/python/XSLTools.html",    13     version      = XSLForms.__version__,    14     packages     = ["XSLForms", "XSLTools"],    15     package_data = {"XSLForms" : ["XSL/*.xsl"]},    16     scripts      = ["scripts/xslform_extract.py", "scripts/xslform_output.py",    17                     "scripts/xslform_prepare.py", "scripts/xslform_input.py"]    18     )