view setup.py @ 22:9aa73d2d5aa8

contents README
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 26 Dec 2013 18:37:42 -0800
parents 372a913c1051
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="""
      """,
      )