source: products/quintagroup.z3cform.captcha/trunk/setup.py @ 3581

Last change on this file since 3581 was 3581, checked in by vmaksymiv, 12 years ago

PPP

File size: 1.8 KB
RevLine 
[1960]1from setuptools import setup, find_packages
2import os
3
[3551]4version = '1.0.2'
[1960]5
6setup(name='quintagroup.z3cform.captcha',
7      version=version,
[3570]8      description="Captcha field for z3cform based on "
9                  "quintagroup.captcha.core package",
[1960]10      long_description=open("README.txt").read() + "\n" +
[3570]11      open(os.path.join("docs", "HISTORY.txt")).read(),
[3579]12      classifiers=[
[3581]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      ],
[1960]30      keywords='plone z3c form captcha',
[2235]31      author='Quintagroup',
[1960]32      author_email='support@quintagroup.com',
[2235]33      url='http://svn.quintagroup.com/products/quintagroup.z3cform.captcha/',
[1960]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',
[2215]41          'quintagroup.captcha.core',
42          'z3c.form',
43          # 'zope.schema',
44          # 'zope.i18n',
45          # 'zope.component',
46          # 'zope.interface',
47          # 'zope.app.pagetemplate',
48          # 'Products.CMFCore',
[1960]49      ],
50      entry_points="""
51      # -*- Entry points: -*-
[2215]52      [z3c.autoinclude.plugin]
53      target = plone
[1960]54      """,
55      )
Note: See TracBrowser for help on using the repository browser.