#!/usr/bin/python from setuptools import setup from redirect import __version__ as version setup( name = 'TracRedirect', version = version, packages = ['redirect'], package_data = { 'redirect': ['htdocs/css/*.css'] }, author = 'Bernhard Haumacher', author_email = 'haui@haumacher.de', maintainer = 'Thomas Moschny', maintainer_email = 'thomas.moschny@gmx.de', url = 'http://svn.ipd.uka.de/trac/javaparty/wiki/TracNav', description = 'Redirection for Trac', entry_points={'trac.plugins': ['TracRedirect = redirect.redirect']}, keywords = 'trac redirect', license = 'GPLv2+', classifiers = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Trac', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], )