source: products/quintagroup.captcha.core/trunk/setup.py @ 3128

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

pep8 fixes

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '0.2.4'
5
6setup(name='quintagroup.captcha.core',
7      version=version,
8      description="A core package of simple captcha implementation",
9      long_description=open("README.txt").read() + "\n" +
10                       open(os.path.join("docs", "HISTORY.txt")).read(),
11      classifiers=[
12        "Framework :: Plone",
13        "Programming Language :: Python",
14        "Topic :: Software Development :: Libraries :: Python Modules",
15        ],
16      keywords='plone captcha',
17      author='Quintagroup',
18      author_email='support@quintagroup.com',
19      url='http://svn.quintagroup.com/products/quintagroup.captcha.core',
20      license='GPL',
21      packages=find_packages(exclude=['ez_setup']),
22      namespace_packages=['quintagroup', 'quintagroup.captcha'],
23      include_package_data=True,
24      zip_safe=False,
25      install_requires=[
26          'setuptools',
27          # -*- Extra requirements: -*-
28      ],
29      entry_points="""
30      # -*- Entry points: -*-
31      [z3c.autoinclude.plugin]
32      target = plone
33      """,
34      )
Note: See TracBrowser for help on using the repository browser.