| 1 | from setuptools import setup, find_packages |
|---|
| 2 | import os |
|---|
| 3 | |
|---|
| 4 | version = '2.0.0' |
|---|
| 5 | |
|---|
| 6 | setup(name='quintagroup.plonecaptchas', |
|---|
| 7 | version=version, |
|---|
| 8 | description="quintagroup.plonecaptchas is simple captchas implementation for Plone, designed for validating human input in insecure forms.", |
|---|
| 9 | long_description=open("README.txt").read() + "\n" + |
|---|
| 10 | open(os.path.join("docs", "HISTORY.txt")).read(), |
|---|
| 11 | # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
|---|
| 12 | classifiers=[ |
|---|
| 13 | "Framework :: Plone", |
|---|
| 14 | "Programming Language :: Python", |
|---|
| 15 | "Topic :: Software Development :: Libraries :: Python Modules", |
|---|
| 16 | ], |
|---|
| 17 | keywords='plone captcha', |
|---|
| 18 | author='Quintagroup', |
|---|
| 19 | author_email='support@quintagroup.com', |
|---|
| 20 | url='http://svn.quintagroup.com/products/quintagroup.plonecaptchas', |
|---|
| 21 | license='GPL', |
|---|
| 22 | packages=find_packages(exclude=['ez_setup']), |
|---|
| 23 | namespace_packages=['quintagroup'], |
|---|
| 24 | include_package_data=True, |
|---|
| 25 | zip_safe=False, |
|---|
| 26 | install_requires=[ |
|---|
| 27 | 'setuptools', |
|---|
| 28 | 'quintagroup.captcha.core', |
|---|
| 29 | # -*- Extra requirements: -*- |
|---|
| 30 | ], |
|---|
| 31 | entry_points=""" |
|---|
| 32 | # -*- Entry points: -*- |
|---|
| 33 | |
|---|
| 34 | [distutils.setup_keywords] |
|---|
| 35 | paster_plugins = setuptools.dist:assert_string_list |
|---|
| 36 | |
|---|
| 37 | [egg_info.writers] |
|---|
| 38 | paster_plugins.txt = setuptools.command.egg_info:write_arg |
|---|
| 39 | |
|---|
| 40 | [z3c.autoinclude.plugin] |
|---|
| 41 | target = plone |
|---|
| 42 | """, |
|---|
| 43 | paster_plugins = ["ZopeSkel"], |
|---|
| 44 | ) |
|---|