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

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

Updated classifiers

File size: 1.9 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '4.3-dev'
5
6setup(name='quintagroup.plonecaptchas',
7      version=version,
8      description="quintagroup.plonecaptchas is simple captchas "
9                  "implementation for Plone, designed for validating "
10                  "human input in insecure forms.",
11      long_description=open("README.txt").read() + "\n" +
12      open(os.path.join("docs", "HISTORY.txt")).read(),
13      classifiers=[
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      ],
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',
42          'Plone>=4.0dev',
43          'quintagroup.captcha.core>=0.2',
44          'quintagroup.formlib.captcha',
45          'quintagroup.z3cform.captcha',
46          # -*- Extra requirements: -*-
47      ],
48      entry_points="""
49      # -*- Entry points: -*-
50      [z3c.autoinclude.plugin]
51      target = plone
52      """,
53      )
Note: See TracBrowser for help on using the repository browser.