source: products/quintagroup.z3cform.captcha/trunk/setup.py @ 2215

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

Merged all changes from branches/captchas-refactoring into trunk.

Merged revisions 3005,3095,3110-3117 via svnmerge from
http://svn.quintagroup.com/products/quintagroup.z3cform.captcha/branches/captchas-refactoring

........

r3005 | liebster | 2010-03-22 16:19:33 +0200 (Mon, 22 Mar 2010) | 1 line


Add depending quintagroup.captcha.core

........

r3095 | mylan | 2010-04-01 17:31:59 +0300 (Thu, 01 Apr 2010) | 1 line


#173: Fix wrong import, update package description, update dependencies list in quintagroup.z3cform.captcha package

........

r3110 | mylan | 2010-04-07 16:56:33 +0300 (Wed, 07 Apr 2010) | 1 line


#185: Add default captcha widget factory adapter registration

........

r3111 | mylan | 2010-04-07 16:59:19 +0300 (Wed, 07 Apr 2010) | 1 line


#185: force package autoregistration with z3c.autoinclude

........

r3112 | mylan | 2010-04-07 17:00:00 +0300 (Wed, 07 Apr 2010) | 1 line


#185: Add default imports into package init module

........

r3113 | mylan | 2010-04-07 17:03:13 +0300 (Wed, 07 Apr 2010) | 1 line


#185: Add tests infrastructure

........

r3114 | mylan | 2010-04-07 17:04:51 +0300 (Wed, 07 Apr 2010) | 1 line


#185: Add registration tests

........

r3115 | mylan | 2010-04-07 18:07:15 +0300 (Wed, 07 Apr 2010) | 1 line


#185: Add tests for captcha widget

........

r3116 | mylan | 2010-04-07 18:38:19 +0300 (Wed, 07 Apr 2010) | 1 line


#185: Add tests for captcha validator

........

r3117 | mylan | 2010-04-08 16:23:01 +0300 (Thu, 08 Apr 2010) | 1 line


#185: Fixed tests for plone>=3.3

........

File size: 1.4 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '0.1.0'
5
6setup(name='quintagroup.z3cform.captcha',
7      version=version,
8      description="Captcha field for z3cform based on quintagroup.captcha.core package",
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 z3c form captcha',
18      author='Melnychuk Taras',
19      author_email='support@quintagroup.com',
20      url='http://quintagroup.com',
21      license='GPL',
22      packages=find_packages(exclude=['ez_setup']),
23      namespace_packages=['quintagroup', 'quintagroup.z3cform'],
24      include_package_data=True,
25      zip_safe=False,
26      install_requires=[
27          'setuptools',
28          'quintagroup.captcha.core',
29          'z3c.form',
30          # 'zope.schema',
31          # 'zope.i18n',
32          # 'zope.component',
33          # 'zope.interface',
34          # 'zope.app.pagetemplate',
35          # 'Products.CMFCore',
36      ],
37      entry_points="""
38      # -*- Entry points: -*-
39      [z3c.autoinclude.plugin]
40      target = plone
41      """,
42      )
43
44
Note: See TracBrowser for help on using the repository browser.