source: products/quintagroup.formlib.captcha/trunk/setup.py @ 3605

Last change on this file since 3605 was 3587, checked in by vmaksymiv, 11 years ago

Pep fixes

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