source: products/quintagroup.plonecaptchas/trunk/setup.py @ 3444

Last change on this file since 3444 was 3444, checked in by vmaksymiv, 12 years ago

prepare release

File size: 1.3 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '4.1.2'
5
6setup(name='quintagroup.plonecaptchas',
7      version=version,
8      description="quintagroup.plonecaptchas is simple captchas "
9                  "implementation for Plone, designed for validating "
10                  "human input in insecure forms.",
11      long_description=open("README.txt").read() + "\n" +
12                       open(os.path.join("docs", "HISTORY.txt")).read(),
13      classifiers=[
14        "Framework :: Plone",
15        "Programming Language :: Python",
16        "Topic :: Software Development :: Libraries :: Python Modules",
17        ],
18      keywords='plone captcha',
19      author='Quintagroup',
20      author_email='support@quintagroup.com',
21      url='http://svn.quintagroup.com/products/quintagroup.plonecaptchas',
22      license='GPL',
23      packages=find_packages(exclude=['ez_setup']),
24      namespace_packages=['quintagroup'],
25      include_package_data=True,
26      zip_safe=False,
27      install_requires=[
28          'setuptools',
29          'Plone>=4.0dev',
30          'quintagroup.captcha.core>=0.2',
31          'quintagroup.formlib.captcha',
32          'quintagroup.z3cform.captcha',
33          # -*- Extra requirements: -*-
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.