source: products/quintagroup.plonecaptchas/branches/plone3/setup.py @ 3659

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

Updated classifiers

File size: 1.8 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '3.0'
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 :: Zope2",
20          "Framework :: Zope3",
21          "License :: OSI Approved :: GNU General Public License (GPL)",
22          "Operating System :: OS Independent",
23          "Programming Language :: Python",
24          "Topic :: Security",
25          "Topic :: Software Development :: Libraries :: Python Modules",
26      ],
27      keywords='plone captcha',
28      author='Quintagroup',
29      author_email='support@quintagroup.com',
30      url='http://svn.quintagroup.com/products/quintagroup.plonecaptchas',
31      license='GPL',
32      packages=find_packages(exclude=['ez_setup']),
33      namespace_packages=['quintagroup'],
34      include_package_data=True,
35      zip_safe=False,
36      install_requires=[
37          'setuptools',
38          'quintagroup.captcha.core',
39          # -*- Extra requirements: -*-
40      ],
41      entry_points="""
42      # -*- Entry points: -*-
43
44      [distutils.setup_keywords]
45      paster_plugins = setuptools.dist:assert_string_list
46
47      [egg_info.writers]
48      paster_plugins.txt = setuptools.command.egg_info:write_arg
49
50      [z3c.autoinclude.plugin]
51      target = plone
52      """,
53      paster_plugins=["ZopeSkel"],
54      )
Note: See TracBrowser for help on using the repository browser.