view setup.py @ 3:b0ef5452a740

beginning of captcha checking
author k0s <k0scist@gmail.com>
date Tue, 23 Feb 2010 20:08:22 -0500
parents c861518b2a44
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
      """,
      )