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

Last change on this file since 3281 was 3281, checked in by vmaksymiv, 13 years ago

has updated history, version

File size: 1.4 KB
RevLine 
[1960]1from setuptools import setup, find_packages
2import os
3
[3281]4version = '1.0.1'
[1960]5
6setup(name='quintagroup.z3cform.captcha',
7      version=version,
[2215]8      description="Captcha field for z3cform based on quintagroup.captcha.core package",
[1960]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',
[2235]18      author='Quintagroup',
[1960]19      author_email='support@quintagroup.com',
[2235]20      url='http://svn.quintagroup.com/products/quintagroup.z3cform.captcha/',
[1960]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',
[2215]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',
[1960]36      ],
37      entry_points="""
38      # -*- Entry points: -*-
[2215]39      [z3c.autoinclude.plugin]
40      target = plone
[1960]41      """,
42      )
[2215]43
44
Note: See TracBrowser for help on using the repository browser.