source: products/quintagroup.plonecaptchas/trunk/setup.py @ 3592

Last change on this file since 3592 was 3592, checked in by vmaksymiv, 11 years ago

Updated classifiers

File size: 1.9 KB
RevLine 
[797]1from setuptools import setup, find_packages
2import os
3
[3457]4version = '4.3-dev'
[797]5
6setup(name='quintagroup.plonecaptchas',
7      version=version,
[3160]8      description="quintagroup.plonecaptchas is simple captchas "
9                  "implementation for Plone, designed for validating "
10                  "human input in insecure forms.",
[797]11      long_description=open("README.txt").read() + "\n" +
[3592]12      open(os.path.join("docs", "HISTORY.txt")).read(),
[797]13      classifiers=[
[3592]14          "Development Status :: 5 - Production/Stable",
15          "Environment :: Web Environment",
16          "Framework :: Plone",
17          "Framework :: Plone :: 3.2",
18          "Framework :: Plone :: 3.3",
19          "Framework :: Plone :: 4.0",
20          "Framework :: Plone :: 4.1",
21          "Framework :: Plone :: 4.2",
22          "Framework :: Plone :: 4.3",
23          "Framework :: Zope2",
24          "Framework :: Zope3",
25          "License :: OSI Approved :: GNU General Public License (GPL)",
26          "Operating System :: OS Independent",
27          "Programming Language :: Python",
28          "Topic :: Security",
29          "Topic :: Software Development :: Libraries :: Python Modules",
30      ],
[797]31      keywords='plone captcha',
32      author='Quintagroup',
33      author_email='support@quintagroup.com',
34      url='http://svn.quintagroup.com/products/quintagroup.plonecaptchas',
35      license='GPL',
36      packages=find_packages(exclude=['ez_setup']),
37      namespace_packages=['quintagroup'],
38      include_package_data=True,
39      zip_safe=False,
40      install_requires=[
41          'setuptools',
[2509]42          'Plone>=4.0dev',
43          'quintagroup.captcha.core>=0.2',
[2490]44          'quintagroup.formlib.captcha',
[3270]45          'quintagroup.z3cform.captcha',
[797]46          # -*- Extra requirements: -*-
47      ],
48      entry_points="""
49      # -*- Entry points: -*-
[2041]50      [z3c.autoinclude.plugin]
51      target = plone
[797]52      """,
53      )
Note: See TracBrowser for help on using the repository browser.