Mercurial > hg > bitsyauth
view setup.py @ 40:cb1d21648588
count clicks the hard way
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 27 Dec 2013 20:13:04 -0800 |
parents | 6af220013aa1 |
children |
line wrap: on
line source
from setuptools import setup 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=['bitsyauth'], include_package_data=True, zip_safe=False, install_requires=['Paste', 'PasteScript', 'markup', # TO DEPRECATE 'skimpygimpy', 'PyBrowserID', 'WebOb', ], dependency_links=[], entry_points=""" """, )