from setuptools import setup, find_packages import sys, os version = '0.0' setup(name='TracPaste', version=version, description="An adaptation of Trac to Paste", long_description="""\ This package provides a Paste interface to Trac (specifically to the WSGI branch of Trac). It makes it deployable with Paste, including new-project setup. This is in the very early stages, so expect problems (but also `report them `_!). This project is only installable from the `Subversion repository `_ or with ``easy_install TracPaste==dev``. Trac must be installed from the `WSGI branch `_ or as an automatically acquired dependency of this package. """, classifiers=[ 'Development Status :: 3 - Alpha', 'Topic :: Internet :: WWW/HTTP', ], keywords='wsgi trac paste web', author='Ian Bicking', author_email='ianb@colorstudy.com', url='http://pythonpaste.org/tracpaste', license='MIT', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), zip_safe=False, install_requires=[ # Also fix this in tracpaste/wsgiapp.py if changed here: 'Trac==wsgi,==0.10wsgi', 'Paste', 'PasteScript==dev,>0.4.1', 'PasteDeploy==dev,>0.4', ], entry_points=""" # -*- Entry points: -*- [paste.app_factory] main = tracpaste.wsgiapp:paste_app_factory [paste.app_install] main = tracpaste.wsgiapp:Installer """, )