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

Last change on this file since 804 was 630, checked in by crchemist, 17 years ago

Wrote readme.txt.

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