from setuptools import setup, find_packages version = '0.1' setup(name='WSGIOverlay', version=version, description="High-level server-side include style templating language", long_description="""\ WSGIOverlay is a high-level templating language, similar to HTML Overlays and Server Side Includes. It is intended to facilitate the composing of multiple applications into a single web site, sharing style and combining data from the applications into a single view. This is done in a way that is neutral of underlying templating languages and frameworks. This can be installed from `the repository `_ with ``easy_install WSGIOverlay==dev`` """, classifiers=[ 'Topic :: Internet :: WWW/HTTP :: WSGI', ], keywords='wsgi middleware templating', author='Ian Bicking', author_email='ianb@colorstudy.com', url='http://pythonpaste.org/wsgioverlay/', license='MIT', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ 'lxml', 'Paste', ], entry_points=""" [paste.filter_app_factory] main = wsgioverlay.middleware:make_middleware """, )