source: products/quintagroup.pingtool/trunk/setup.py @ 626

Last change on this file since 626 was 626, checked in by crchemist, 18 years ago

Modified tests.

File size: 1.2 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4setup(name='quintagroup.pingtool',
5      version=open(os.path.join("quintagroup", "pingtool", "version.txt")).read(),
6      description="quintagroup.pingtool is a simple tool to enable pinging of external feed agregators for Plone 3.1.x",
7      long_description=open("README.txt").read() + "\n" +
8                       open(os.path.join("docs", "HISTORY.txt")).read(),
9      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
10      classifiers=[
11        "Framework :: Plone",
12        "Programming Language :: Python",
13        "Topic :: Software Development :: Libraries :: Python Modules",
14        ],
15      keywords='',
16      author='liebster',
17      author_email='support@quintagroup.com',
18      url='http://svn.quintagroup.com/products/quintagroup.pingtool/trunk',
19      license='GPL',
20      packages=find_packages(exclude=['ez_setup']),
21      namespace_packages=['quintagroup'],
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      """,
31      )
Note: See TracBrowser for help on using the repository browser.