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

Last change on this file since 3570 was 3570, checked in by vmaksymiv, 11 years ago

PPP fixes

File size: 1.3 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.0.2'
5
6setup(name='quintagroup.z3cform.captcha',
7      version=version,
8      description="Captcha field for z3cform based on "
9                  "quintagroup.captcha.core package",
10      long_description=open("README.txt").read() + "\n" +
11      open(os.path.join("docs", "HISTORY.txt")).read(),
12      classifiers=["Framework :: Plone",
13      "Programming Language :: Python",
14      "Topic :: Software Development :: Libraries :: Python Modules", ],
15      keywords='plone z3c form captcha',
16      author='Quintagroup',
17      author_email='support@quintagroup.com',
18      url='http://svn.quintagroup.com/products/quintagroup.z3cform.captcha/',
19      license='GPL',
20      packages=find_packages(exclude=['ez_setup']),
21      namespace_packages=['quintagroup', 'quintagroup.z3cform'],
22      include_package_data=True,
23      zip_safe=False,
24      install_requires=[
25          'setuptools',
26          'quintagroup.captcha.core',
27          'z3c.form',
28          # 'zope.schema',
29          # 'zope.i18n',
30          # 'zope.component',
31          # 'zope.interface',
32          # 'zope.app.pagetemplate',
33          # 'Products.CMFCore',
34      ],
35      entry_points="""
36      # -*- Entry points: -*-
37      [z3c.autoinclude.plugin]
38      target = plone
39      """,
40      )
Note: See TracBrowser for help on using the repository browser.