from setuptools import setup, find_packages import os version = '4.3-dev' setup(name='quintagroup.plonecaptchas', version=version, description="quintagroup.plonecaptchas is simple captchas " "implementation for Plone, designed for validating " "human input in insecure forms.", long_description=open("README.txt").read() + "\n" + open(os.path.join("docs", "HISTORY.txt")).read(), classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Plone", "Framework :: Plone :: 3.2", "Framework :: Plone :: 3.3", "Framework :: Plone :: 4.0", "Framework :: Plone :: 4.1", "Framework :: Plone :: 4.2", "Framework :: Plone :: 4.3", "Framework :: Zope2", "Framework :: Zope3", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Security", "Topic :: Software Development :: Libraries :: Python Modules", ], keywords='plone captcha', author='Quintagroup', author_email='support@quintagroup.com', url='http://svn.quintagroup.com/products/quintagroup.plonecaptchas', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['quintagroup'], include_package_data=True, zip_safe=False, install_requires=[ 'setuptools', 'Plone>=4.0dev', 'quintagroup.captcha.core>=0.2', 'quintagroup.formlib.captcha', 'quintagroup.z3cform.captcha', # -*- Extra requirements: -*- ], entry_points=""" # -*- Entry points: -*- [z3c.autoinclude.plugin] target = plone """, )