XSLTools

setup.py

379:e79dda7b3fcb
2005-11-05 paulb [project @ 2005-11-05 01:44:21 by paulb] Updated the overview, adding a link to the XSLForms.Output module documentation. Corrected an example in the template attribute reference. Added descriptions of more attributes and controls in the template design document.
     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", "XSLForms.Resources", "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                     "scripts/xslform_qt_prepare.py", "scripts/xslform_qt_template.py",    19                     "scripts/xslform_schema.py"]    20     )