source: products/quintagroup.formlib.captcha/trunk/setup.py @ 2210

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

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

Merged revisions 3004,3006,3094,3096-3099,3119-3120 via svnmerge from
http://svn.quintagroup.com/products/quintagroup.formlib.captcha/branches/captchas-refactoring

........

r3004 | liebster | 2010-03-22 16:16:05 +0200 (Mon, 22 Mar 2010) | 1 line


Remove egg info

........

r3006 | liebster | 2010-03-22 16:20:03 +0200 (Mon, 22 Mar 2010) | 1 line


Add depending quintagroup.captcha.core

........

r3094 | mylan | 2010-04-01 16:53:05 +0300 (Thu, 01 Apr 2010) | 1 line


#173: Fix wrong import, update package description, add zope.formlib as dependency

........

r3096 | mylan | 2010-04-01 17:39:30 +0300 (Thu, 01 Apr 2010) | 1 line


#173: update dependencies list in quintagroup.formlib.captcha package, commented for now

........

r3097 | mylan | 2010-04-01 18:48:49 +0300 (Thu, 01 Apr 2010) | 1 line


#173: Move quintagroup.formlib.captcha.form content into the quintagroup.formlib.captcha, add zope.app.form as direct requirement

........

r3098 | mylan | 2010-04-02 13:38:30 +0300 (Fri, 02 Apr 2010) | 1 line


#186: Remove needless namespace declarations in configure.zcml

........

r3099 | mylan | 2010-04-02 13:40:52 +0300 (Fri, 02 Apr 2010) | 1 line


#186: added tests for field and widget staff registration, for captcha widget operation

........

r3119 | mylan | 2010-04-08 16:42:00 +0300 (Thu, 08 Apr 2010) | 1 line


#186: Add dependency package include in configure.zcml

........

r3120 | mylan | 2010-04-08 16:42:34 +0300 (Thu, 08 Apr 2010) | 1 line


#186: Fixed registration tests

........

File size: 1.3 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.0'
5
6setup(name='quintagroup.formlib.captcha',
7      version=version,
8      description="Captcha field for formlib 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 formlib captcha',
18      author='Vitaliy Podoba',
19      author_email='piv@quintagroup.com',
20      url='http://svn.plone.org/svn/plone/plone.app.example',
21      license='GPL',
22      packages=find_packages(exclude=['ez_setup']),
23      namespace_packages=['quintagroup', 'quintagroup.formlib'],
24      include_package_data=True,
25      zip_safe=False,
26      install_requires=[
27          'setuptools',
28          # -*- Extra requirements: -*-
29          'quintagroup.captcha.core',
30          'zope.app.form',
31          # 'zope.component',
32          # 'zope.interface',
33          # 'zope.schema',
34          # 'zope.i18n',
35          # 'Products.CMFCore',
36      ],
37      entry_points="""
38      # -*- Entry points: -*-
39      """,
40      )
Note: See TracBrowser for help on using the repository browser.