Mercurial > hg > bitsyauth
view setup.py @ 27:b411066b4929
example/persona.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 26 Dec 2013 22:43:24 -0800 |
parents | 9aa73d2d5aa8 |
children | 0bf52646061b |
line wrap: on
line source
from setuptools import setup, find_packages version = '0.1.2' 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', # TO DEPRECATE 'skimpygimpy', 'PyBrowserID', ], dependency_links=[ 'http://svn.pythonpaste.org/Paste/trunk#egg=Paste', ], entry_points=""" """, )