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 )