XSLTools

setup.py

534:a57218cde853
2006-11-11 paulb [project @ 2006-11-11 01:43:16 by paulb] Introduced a content type check to avoid needless discarding of non-form data.
     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_preparemacro.py",    18                     "scripts/xslform_input.py",    19                     "scripts/xslform_qt_prepare.py", "scripts/xslform_qt_template.py",    20                     "scripts/xslform_schema.py"]    21     )