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
RevLine 
[1969]1from setuptools import setup, find_packages
2import os
3
[3432]4version = '1.0.5'
[1969]5
6setup(name='quintagroup.pfg.captcha',
7      version=version,
[3168]8      description="quintagroup.pfg.captcha is a package that allows "
9                  "to add captcha field to PloneFormGen forms.",
[1969]10      long_description=open("README.txt").read() + "\n" +
[3583]11      open(os.path.join("docs", "HISTORY.txt")).read(),
[1969]12      classifiers=[
[3585]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",
[3583]29      ],
[1969]30      keywords='plone captcha PloneFormGen',
31      author='Quintagroup',
32      author_email='support@quintagroup.com',
[3578]33      url='http://projects.quintagroup.com/products/wiki/'
[3168]34          'quintagroup.pfg.captcha',
[1969]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',
[2082]42          'quintagroup.captcha.core',
43          'Products.PloneFormGen',
[1969]44          # -*- Extra requirements: -*-
[2082]45          # 'zope.event',
46          # 'zope.lifecycleevent',
47          # 'Products.CMFCore',
48          # 'Products.CMFPlone',
49          # 'Products.Archetypes',
50          # 'Products.ATContentTypes',
51          # 'Products.validation',
[1969]52      ],
53      entry_points="""
54      # -*- Entry points: -*-
[2082]55      [z3c.autoinclude.plugin]
56      target = plone
[1969]57      """,
58      )
Note: See TracBrowser for help on using the repository browser.