| [630] | 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | """ |
|---|
| 3 | This module contains the tool of quintagroup.pingtool |
|---|
| 4 | """ |
|---|
| 5 | import os |
|---|
| [626] | 6 | from setuptools import setup, find_packages |
|---|
| 7 | |
|---|
| [630] | 8 | def read(*rnames): |
|---|
| 9 | return open(os.path.join(os.path.dirname(__file__), *rnames)).read() |
|---|
| 10 | |
|---|
| [626] | 11 | setup(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 | ) |
|---|