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

Last change on this file since 3260 was 3260, checked in by chervol, 13 years ago

prepare 1.4 release

File size: 1.2 KB
RevLine 
[1959]1from setuptools import setup, find_packages
2import os
3
[3260]4version = '1.4'
[1959]5
6setup(name='quintagroup.formlib.captcha',
7      version=version,
[3121]8      description="Captcha field for formlib based on "
9                  "quintagroup.captcha.core package",
[1959]10      long_description=open("README.txt").read() + "\n" +
11                       open(os.path.join("docs", "HISTORY.txt")).read(),
12      classifiers=[
13        "Framework :: Plone",
14        "Programming Language :: Python",
15        "Topic :: Software Development :: Libraries :: Python Modules",
16        ],
17      keywords='plone formlib captcha',
[2227]18      author='Quintagroup',
19      author_email='support@quintagroup.com',
20      url='http://svn.quintagroup.com/products/quintagroup.formlib.captcha',
[1959]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: -*-
[2210]29          'quintagroup.captcha.core',
30          'zope.app.form',
[2797]31          'zope.formlib',
[1959]32      ],
33      entry_points="""
34      # -*- Entry points: -*-
35      """,
36      )
Note: See TracBrowser for help on using the repository browser.