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

Last change on this file since 2737 was 2737, checked in by mylan, 14 years ago

Merged revisions 3750,3767-3774 via svnmerge from
http://svn.quintagroup.com/products/quintagroup.pfg.captcha/branches/migration

........

r3750 | mylan | 2010-07-20 23:44:36 +0300 (Tue, 20 Jul 2010) | 1 line


#222: Added basic structure of migration Product to Package

........

r3767 | mylan | 2010-08-09 20:59:55 +0300 (Mon, 09 Aug 2010) | 1 line


Fix validator registration breakage

........

r3768 | mylan | 2010-08-09 21:07:08 +0300 (Mon, 09 Aug 2010) | 1 line


#222: Added migratioin old Products.qPloneCaptchaField to quintagroup.pfg.captcha fields

........

r3769 | mylan | 2010-08-10 12:19:58 +0300 (Tue, 10 Aug 2010) | 1 line


#222: Fix typo

........

r3770 | mylan | 2010-08-10 12:59:59 +0300 (Tue, 10 Aug 2010) | 1 line


#222: Move installation quintagroup.pfg.captcha with dependecies from global setupPloneSite to TestCase? classes

........

r3771 | mylan | 2010-08-10 14:09:48 +0300 (Tue, 10 Aug 2010) | 1 line


#222: Splited tests.py module into 2 layers with notinstalled and installed quintagroup.pfg.captcha packages

........

r3772 | mylan | 2010-08-10 17:43:03 +0300 (Tue, 10 Aug 2010) | 1 line


#222: Fix uninstallation 'old' packages when second run quintagroup.pfg.captcha installation

........

r3773 | mylan | 2010-08-10 17:43:54 +0300 (Tue, 10 Aug 2010) | 1 line


#222: Added test for migration from old qPloneCaptchaField to new quintagroup.pfg.captcha

........

r3774 | mylan | 2010-08-10 18:03:41 +0300 (Tue, 10 Aug 2010) | 1 line


#222: Prepare to 1.0.1 release

........

File size: 1.5 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.0.1'
5
6setup(name='quintagroup.pfg.captcha',
7      version=version,
8      description="quintagroup.pfg.captcha is a package that allows to add captcha field to PloneFormGen forms.",
9      long_description=open("README.txt").read() + "\n" +
10                       open(os.path.join("docs", "HISTORY.txt")).read(),
11      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
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/quintagroup.pfg.captcha',
21      license='GPL',
22      packages=find_packages(exclude=['ez_setup']),
23      namespace_packages=['quintagroup', 'quintagroup.pfg'],
24      include_package_data=True,
25      zip_safe=False,
26      install_requires=[
27          'setuptools',
28          'quintagroup.captcha.core',
29          'Products.PloneFormGen',
30          # -*- Extra requirements: -*-
31          # 'zope.event',
32          # 'zope.lifecycleevent',
33          # 'Products.CMFCore',
34          # 'Products.CMFPlone',
35          # 'Products.Archetypes',
36          # 'Products.ATContentTypes',
37          # 'Products.validation',
38      ],
39      entry_points="""
40      # -*- Entry points: -*-
41      [z3c.autoinclude.plugin]
42      target = plone
43      """,
44      )
Note: See TracBrowser for help on using the repository browser.