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

Last change on this file since 3168 was 3168, checked in by vmaksymiv, 13 years ago

pep8, pyflakes fixes

File size: 1.5 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.0.4'
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        "Framework :: Plone",
14        "Programming Language :: Python",
15        "Topic :: Software Development :: Libraries :: Python Modules",
16        ],
17      keywords='plone captcha PloneFormGen',
18      author='Quintagroup',
19      author_email='support@quintagroup.com',
20      url='http://projects.quintagroup.com/products/wiki/'\
21          'quintagroup.pfg.captcha',
22      license='GPL',
23      packages=find_packages(exclude=['ez_setup']),
24      namespace_packages=['quintagroup', 'quintagroup.pfg'],
25      include_package_data=True,
26      zip_safe=False,
27      install_requires=[
28          'setuptools',
29          'quintagroup.captcha.core',
30          'Products.PloneFormGen',
31          # -*- Extra requirements: -*-
32          # 'zope.event',
33          # 'zope.lifecycleevent',
34          # 'Products.CMFCore',
35          # 'Products.CMFPlone',
36          # 'Products.Archetypes',
37          # 'Products.ATContentTypes',
38          # 'Products.validation',
39      ],
40      entry_points="""
41      # -*- Entry points: -*-
42      [z3c.autoinclude.plugin]
43      target = plone
44      """,
45      )
Note: See TracBrowser for help on using the repository browser.