XSLTools

Annotated setup.py

349:83ce900fe957
2005-10-25 paulb [project @ 2005-10-25 17:27:39 by paulb] Moved generic methods from the QtConfigurator example into a new resource class in the PyQt module. Moved the Factory class from the QtConfigurator example into the PyQt module.
paulb@108 1
#! /usr/bin/env python
paulb@108 2
paulb@108 3
from distutils.core import setup
paulb@108 4
paulb@108 5
import XSLForms
paulb@108 6
paulb@108 7
setup(
paulb@108 8
    name         = "XSLTools",
paulb@108 9
    description  = "Modules and packages for the development of XML/XSL-based applications",
paulb@108 10
    author       = "Paul Boddie",
paulb@108 11
    author_email = "paul@boddie.org.uk",
paulb@108 12
    url          = "http://www.boddie.org.uk/python/XSLTools.html",
paulb@108 13
    version      = XSLForms.__version__,
paulb@201 14
    packages     = ["XSLForms", "XSLTools"],
paulb@108 15
    package_data = {"XSLForms" : ["XSL/*.xsl"]},
paulb@253 16
    scripts      = ["scripts/xslform_extract.py", "scripts/xslform_output.py",
paulb@253 17
                    "scripts/xslform_prepare.py", "scripts/xslform_input.py"]
paulb@108 18
    )