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

Last change on this file since 885 was 885, checked in by mylan, 17 years ago

Retag 2.3 version.

File size: 1.4 KB
RevLine 
[630]1# -*- coding: utf-8 -*-
2"""
3This module contains the tool of quintagroup.pingtool
4"""
5import os
[626]6from setuptools import setup, find_packages
7
[630]8def read(*rnames):
9    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
10   
[626]11setup(name='quintagroup.pingtool',
[630]12      version=read("quintagroup", "pingtool", "version.txt"),
[626]13      description="quintagroup.pingtool is a simple tool to enable pinging of external feed agregators for Plone 3.1.x",
[885]14      long_description=read("README.txt") + "\n" + \
15                       read("docs", "INSTALL.txt")+ "\n" + \
16                       read("docs", "HISTORY.txt"),
[626]17      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
18      classifiers=[
19        "Framework :: Plone",
20        "Programming Language :: Python",
21        "Topic :: Software Development :: Libraries :: Python Modules",
22        ],
23      keywords='',
24      author='liebster',
25      author_email='support@quintagroup.com',
[630]26      url='http://quintagroup.com/services/plone-development/products/ping-tool',
[626]27      license='GPL',
28      packages=find_packages(exclude=['ez_setup']),
29      namespace_packages=['quintagroup'],
30      include_package_data=True,
31      zip_safe=False,
32      install_requires=[
33          'setuptools',
[630]34          'archetypes.schemaextender',
[626]35          # -*- Extra requirements: -*-
36      ],
37      entry_points="""
38      # -*- Entry points: -*-
39      """,
40      )
Note: See TracBrowser for help on using the repository browser.