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 )