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

Last change on this file since 3665 was 1232, checked in by liebster, 15 years ago

Added MANIFEST.in

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
8version = '1.1.4'
9
10setup(name='quintagroup.pingtool',
11      version=version,
12      description="quintagroup.pingtool is a simple tool to enable pinging of external feed agregators for Plone 3.1.x",
13      long_description=open("README.txt").read() + "\n\n" +
14                       open(os.path.join("docs", "INSTALL.txt")).read() + "\n\n" +
15                       open(os.path.join("docs", "HISTORY.txt")).read(),
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.