view setup.py @ 21:74b8a8793414

whitespace cleanup
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 17 Nov 2011 11:20:03 -0800
parents 372a913c1051
children 9aa73d2d5aa8
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',
                        ],
      dependency_links=[
                        'http://svn.pythonpaste.org/Paste/trunk#egg=Paste',
                        ],
      entry_points="""
              
      """,
      )