# Copyright 2008 Ivo Bellin Salarin # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . from distutils.core import setup try: import py2exe except ImportError as e: print "py2exe isn't available on this platform" setup(name='runner2', version='rev194', description='application runner: takes as input an XML file, executes the described actions and prints a pretty output.', author='nilleb', author_email='ivo.bellinsalarin@gmail.com', url='http://www.assembla.com/wiki/show/etools/Runner2', console=['runner2.py'], scripts = ['runner2/runner.py'], requires=['nillib', 'logging', 'pyssqllite', 'pywin32'], packages=[''], package_dir = {'runner2':'runner2'}, py_modules=['runner2/runner'], options = { 'py2exe': { 'packages':'encodings', 'includes': 'lxml._elementpath, dis, inspect, opcode, tokenize, token', } }, classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: End Users/Desktop', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', 'Topic :: Desktop Environment', 'Topic :: Text Processing :: Fonts' ] )