Mercurial > hg > CAPTCHAmiddleware
view setup.py @ 2:c861518b2a44
fix bug whereby forbidden characters cause issues
author | k0s <k0scist@gmail.com> |
---|---|
date | Tue, 23 Feb 2010 19:50:23 -0500 |
parents | 21ec6325ae0e |
children | ce757057961c |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = "0.1.1" setup(name='CAPTCHAmiddleware', version=version, description="put CAPTCHAs on forms", long_description=""" """, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://k0s.org', license="GPL", packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'lxmlmiddleware', 'skimpygimpy' ], entry_points=""" # -*- Entry points: -*- [paste.app_factory] example-captcha = captchamiddleware.example:factory """, )