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

Last change on this file since 2068 was 2068, checked in by olha, 14 years ago

files format corrected before initial release.

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '0.1'
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      # Get more strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
12      classifiers=[
13        "Programming Language :: Python",
14        ],
15      keywords='plone captcha',
16      author='Quintagroup',
17      author_email='support@quintagroup.com',
18      url='http://svn.quintagroup.com/products/quintagroup.captcha.core',
19      license='GPL',
20      packages=find_packages(exclude=['ez_setup']),
21      namespace_packages=['quintagroup', 'quintagroup.captcha'],
22      include_package_data=True,
23      zip_safe=False,
24      install_requires=[
25          'setuptools',
26          # -*- Extra requirements: -*-
27      ],
28      entry_points="""
29      # -*- Entry points: -*-
30      [z3c.autoinclude.plugin]
31      target = plone
32      """,
33      )
Note: See TracBrowser for help on using the repository browser.