source: products/quintagroup.captcha.core/trunk/setup.py

Last change on this file was 3693, checked in by potar, 11 years ago

Prepare quintagroup.captcha.core 0.4.3.

  • Property svn:eol-style set to native
File size: 1.6 KB
RevLine 
[1941]1from setuptools import setup, find_packages
2import os
3
[3693]4version = '0.4.3'
[1941]5
6setup(name='quintagroup.captcha.core',
7      version=version,
8      description="A core package of simple captcha implementation",
9      long_description=open("README.txt").read() + "\n" +
[3582]10      open(os.path.join("docs", "HISTORY.txt")).read(),
[1941]11      classifiers=[
[3586]12          "Development Status :: 5 - Production/Stable",
13          "Environment :: Web Environment",
14          "Framework :: Plone",
15          "Framework :: Plone :: 3.2",
16          "Framework :: Plone :: 3.3",
17          "Framework :: Plone :: 4.0",
18          "Framework :: Plone :: 4.1",
19          "Framework :: Plone :: 4.2",
20          "Framework :: Plone :: 4.3",
21          "Framework :: Zope2",
22          "Framework :: Zope3",
23          "License :: OSI Approved :: GNU General Public License (GPL)",
24          "Operating System :: OS Independent",
25          "Programming Language :: Python",
26          "Topic :: Security",
27          "Topic :: Software Development :: Libraries :: Python Modules",
[3582]28      ],
[2068]29      keywords='plone captcha',
30      author='Quintagroup',
31      author_email='support@quintagroup.com',
[1941]32      url='http://svn.quintagroup.com/products/quintagroup.captcha.core',
33      license='GPL',
34      packages=find_packages(exclude=['ez_setup']),
35      namespace_packages=['quintagroup', 'quintagroup.captcha'],
36      include_package_data=True,
37      zip_safe=False,
38      install_requires=[
39          'setuptools',
40          # -*- Extra requirements: -*-
41      ],
42      entry_points="""
43      # -*- Entry points: -*-
[1976]44      [z3c.autoinclude.plugin]
45      target = plone
[1941]46      """,
47      )
Note: See TracBrowser for help on using the repository browser.