comparison setup.py @ 0:21ec6325ae0e

initial import of CAPTCHA middleware; unfinished
author k0s <k0scist@gmail.com>
date Sun, 24 Jan 2010 23:15:57 -0500
parents
children c861518b2a44
comparison
equal deleted inserted replaced
-1:000000000000 0:21ec6325ae0e
1 from setuptools import setup, find_packages
2 import sys, os
3
4 version = "0.1"
5
6 setup(name='CAPTCHAmiddleware',
7 version=version,
8 description="put CAPTCHAs on forms",
9 long_description="""
10 """,
11 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
12 author='Jeff Hammel',
13 author_email='k0scist@gmail.com',
14 url='http://k0s.org',
15 license="GPL",
16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
17 include_package_data=True,
18 zip_safe=False,
19 install_requires=[
20 # -*- Extra requirements: -*-
21 'lxmlmiddleware',
22 'skimpygimpy'
23 ],
24 entry_points="""
25 # -*- Entry points: -*-
26 [paste.app_factory]
27 example-captcha = captchamiddleware.example:factory
28 """,
29 )
30