Mercurial > hg > CAPTCHAmiddleware
comparison setup.py @ 4:ce757057961c
flow contol now works; bumping version
author | k0s <k0scist@gmail.com> |
---|---|
date | Wed, 24 Feb 2010 20:11:25 -0500 |
parents | c861518b2a44 |
children | 6c6766109dac |
comparison
equal
deleted
inserted
replaced
3:b0ef5452a740 | 4:ce757057961c |
---|---|
1 from setuptools import setup, find_packages | 1 from setuptools import setup, find_packages |
2 import sys, os | 2 import sys, os |
3 | 3 |
4 version = "0.1.1" | 4 version = "0.2" |
5 | 5 |
6 setup(name='CAPTCHAmiddleware', | 6 setup(name='CAPTCHAmiddleware', |
7 version=version, | 7 version=version, |
8 description="put CAPTCHAs on forms", | 8 description="put CAPTCHAs on forms", |
9 long_description=""" | 9 long_description=""" |
10 """, | 10 """, |
11 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 11 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
12 author='Jeff Hammel', | 12 author='Jeff Hammel', |
13 author_email='k0scist@gmail.com', | 13 author_email='k0scist@gmail.com', |
14 url='http://k0s.org', | 14 url='http://k0s.org/hg', |
15 license="GPL", | 15 license="GPL", |
16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
17 include_package_data=True, | 17 include_package_data=True, |
18 zip_safe=False, | 18 zip_safe=False, |
19 install_requires=[ | 19 install_requires=[ |