1 | from setuptools import setup, find_packages |
---|
2 | import os |
---|
3 | |
---|
4 | version = '1.0.3' |
---|
5 | |
---|
6 | setup(name='quintagroup.z3cform.captcha', |
---|
7 | version=version, |
---|
8 | description="Captcha field for z3cform based on " |
---|
9 | "quintagroup.captcha.core package", |
---|
10 | long_description=open("README.txt").read() + "\n" + |
---|
11 | open(os.path.join("docs", "HISTORY.txt")).read(), |
---|
12 | classifiers=[ |
---|
13 | "Development Status :: 5 - Production/Stable", |
---|
14 | "Environment :: Web Environment", |
---|
15 | "Framework :: Plone", |
---|
16 | "Framework :: Plone :: 3.2", |
---|
17 | "Framework :: Plone :: 3.3", |
---|
18 | "Framework :: Plone :: 4.0", |
---|
19 | "Framework :: Plone :: 4.1", |
---|
20 | "Framework :: Plone :: 4.2", |
---|
21 | "Framework :: Plone :: 4.3", |
---|
22 | "Framework :: Zope2", |
---|
23 | "Framework :: Zope3", |
---|
24 | "License :: OSI Approved :: GNU General Public License (GPL)", |
---|
25 | "Operating System :: OS Independent", |
---|
26 | "Programming Language :: Python", |
---|
27 | "Topic :: Security", |
---|
28 | "Topic :: Software Development :: Libraries :: Python Modules", |
---|
29 | ], |
---|
30 | keywords='plone z3c form captcha', |
---|
31 | author='Quintagroup', |
---|
32 | author_email='support@quintagroup.com', |
---|
33 | url='http://svn.quintagroup.com/products/quintagroup.z3cform.captcha/', |
---|
34 | license='GPL', |
---|
35 | packages=find_packages(exclude=['ez_setup']), |
---|
36 | namespace_packages=['quintagroup', 'quintagroup.z3cform'], |
---|
37 | include_package_data=True, |
---|
38 | zip_safe=False, |
---|
39 | install_requires=[ |
---|
40 | 'setuptools', |
---|
41 | 'quintagroup.captcha.core >= 0.4.3', |
---|
42 | 'z3c.form', |
---|
43 | # 'zope.schema', |
---|
44 | # 'zope.i18n', |
---|
45 | # 'zope.component', |
---|
46 | # 'zope.interface', |
---|
47 | # 'zope.app.pagetemplate', |
---|
48 | # 'Products.CMFCore', |
---|
49 | ], |
---|
50 | entry_points=""" |
---|
51 | # -*- Entry points: -*- |
---|
52 | [z3c.autoinclude.plugin] |
---|
53 | target = plone |
---|
54 | """, |
---|
55 | ) |
---|