view setup.py @ 9:73b2b5bccd52

* allow logout to pass through instead of failing * add a basic filter factory for single-user bitsyauth wrapper which reads bitsyblog users directory as format (this needs to be factored apart later)
author egj@socialplanning.org
date Mon, 04 Jan 2010 03:14:01 +0000
parents 672a4dd85763
children 16c33fd5fb20
line wrap: on
line source

from setuptools import setup, find_packages

version = '0.1.1'

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',
                        'skimpygimpy',
                        ],
      dependency_links=['https://svn.openplans.org/svn/standalone/markup#egg=markup',
                        'http://svn.pythonpaste.org/Paste/trunk#egg=Paste',
                        ],
      entry_points="""
      # -*- Entry points: -*-
              
      """,
      )