source: products/quintagroup.pfg.captcha/trunk/setup.py @ 3606

Last change on this file since 3606 was 3585, checked in by vmaksymiv, 11 years ago

prettify pep

File size: 2.0 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.0.5'
5
6setup(name='quintagroup.pfg.captcha',
7      version=version,
8      description="quintagroup.pfg.captcha is a package that allows "
9                  "to add captcha field to PloneFormGen forms.",
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 captcha PloneFormGen',
31      author='Quintagroup',
32      author_email='support@quintagroup.com',
33      url='http://projects.quintagroup.com/products/wiki/'
34          'quintagroup.pfg.captcha',
35      license='GPL',
36      packages=find_packages(exclude=['ez_setup']),
37      namespace_packages=['quintagroup', 'quintagroup.pfg'],
38      include_package_data=True,
39      zip_safe=False,
40      install_requires=[
41          'setuptools',
42          'quintagroup.captcha.core',
43          'Products.PloneFormGen',
44          # -*- Extra requirements: -*-
45          # 'zope.event',
46          # 'zope.lifecycleevent',
47          # 'Products.CMFCore',
48          # 'Products.CMFPlone',
49          # 'Products.Archetypes',
50          # 'Products.ATContentTypes',
51          # 'Products.validation',
52      ],
53      entry_points="""
54      # -*- Entry points: -*-
55      [z3c.autoinclude.plugin]
56      target = plone
57      """,
58      )
Note: See TracBrowser for help on using the repository browser.