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

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

prepare release

File size: 1.5 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" +
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',
[3168]20      url='http://projects.quintagroup.com/products/wiki/'\
21          'quintagroup.pfg.captcha',
[1969]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',
[2082]29          'quintagroup.captcha.core',
30          'Products.PloneFormGen',
[1969]31          # -*- Extra requirements: -*-
[2082]32          # 'zope.event',
33          # 'zope.lifecycleevent',
34          # 'Products.CMFCore',
35          # 'Products.CMFPlone',
36          # 'Products.Archetypes',
37          # 'Products.ATContentTypes',
38          # 'Products.validation',
[1969]39      ],
40      entry_points="""
41      # -*- Entry points: -*-
[2082]42      [z3c.autoinclude.plugin]
43      target = plone
[1969]44      """,
45      )
Note: See TracBrowser for help on using the repository browser.