from setuptools import setup, find_packages import sys, os version = '0.0' setup(name='DjangoPaste', version=version, description="Integration of Python Paste and Django", long_description="""\ This project aims to make `Django `_ applications available as encapsulated Python applications, usable by `Python Paste `_ (and specifically `Paste Deploy `_). This has not been released yet, but you can install from the `Subversion repository `_ using ``easy_install DjangoPaste==dev``. """, classifiers=[ 'Development Status :: 3 - Alpha', 'Topic :: Internet :: WWW/HTTP', ], keywords='wsgi paste django web', author='Ian Bicking', author_email='ianb@colorstudy.com', url='http://pythonpaste.org/djangopaste/', license='MIT', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), zip_safe=False, install_requires=[ 'Paste', ], entry_points=""" [paste.app_factory] project = djangopaste.wsgiapp:make_project_app """, test_suite="nose.collector", )