Mercurial > hg > bitsyauth
view setup.py @ 53:d9e712cfd098
STUB: bitsyauth/__init__.py
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Thu, 06 Mar 2014 22:27:26 -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=""" """, )