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

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

PPP fixes

  • Property svn:eol-style set to native
File size: 1.5 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '0.3'
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" +
10      open(os.path.join("docs", "HISTORY.txt")).read(),
11      classifiers=[
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",
28      ],
29      keywords='plone captcha',
30      author='Quintagroup',
31      author_email='support@quintagroup.com',
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: -*-
44      [z3c.autoinclude.plugin]
45      target = plone
46      """,
47      )
Note: See TracBrowser for help on using the repository browser.