Mercurial > hg > bitsyauth
view setup.py @ 5:2693b81f5960
fix redirection behaviour (though ultimately the whole class should be refactored not to store request on it)
author | k0s <k0scist@gmail.com> |
---|---|
date | Sat, 26 Dec 2009 22:56:56 -0500 |
parents | d1bdf022a649 |
children | 672a4dd85763 |
line wrap: on
line source
from setuptools import setup, find_packages version = '0.1' setup(name='bitsyauth', version=version, description="form + digest auth middleware", long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='auth', author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://k0s.org/hg/bitsyauth', license='GPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=['Paste', 'PasteScript', 'markup', 'skimpygimpy', ], dependency_links=['https://svn.openplans.org/svn/standalone/markup#egg=markup', 'http://svn.pythonpaste.org/Paste/trunk#egg=Paste', ], entry_points=""" # -*- Entry points: -*- """, )