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

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

Updated classifiers

File size: 1.8 KB
RevLine 
[797]1from setuptools import setup, find_packages
2import os
3
[2064]4version = '3.0'
[797]5
6setup(name='quintagroup.plonecaptchas',
7      version=version,
[3162]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" +
[3593]12      open(os.path.join("docs", "HISTORY.txt")).read(),
[797]13      classifiers=[
[3593]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      ],
[797]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',
[2041]38          'quintagroup.captcha.core',
[797]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
[2041]49
50      [z3c.autoinclude.plugin]
51      target = plone
[797]52      """,
[3162]53      paster_plugins=["ZopeSkel"],
[797]54      )
Note: See TracBrowser for help on using the repository browser.