from setuptools import setup, find_packages import os version = '0.3' setup(name='quintagroup.captcha.core', version=version, description="A core package of simple captcha implementation", long_description=open("README.txt").read() + "\n" + open(os.path.join("docs", "HISTORY.txt")).read(), classifiers=[ "Framework :: Plone", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules", ], keywords='plone captcha', author='Quintagroup', author_email='support@quintagroup.com', url='http://svn.quintagroup.com/products/quintagroup.captcha.core', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['quintagroup', 'quintagroup.captcha'], include_package_data=True, zip_safe=False, install_requires=[ 'setuptools', # -*- Extra requirements: -*- ], entry_points=""" # -*- Entry points: -*- [z3c.autoinclude.plugin] target = plone """, )