Changeset 1232 in products
- Timestamp:
- Aug 11, 2009 9:17:41 AM (15 years ago)
- Location:
- quintagroup.pingtool/trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
quintagroup.pingtool/trunk/quintagroup/pingtool/version.txt
r714 r1232 1 1.1.4 dev1 1.1.4 -
quintagroup.pingtool/trunk/setup.py
r885 r1232 6 6 from setuptools import setup, find_packages 7 7 8 def read(*rnames): 9 return open(os.path.join(os.path.dirname(__file__), *rnames)).read() 10 8 version = '1.1.4' 9 11 10 setup(name='quintagroup.pingtool', 12 version= read("quintagroup", "pingtool", "version.txt"),11 version=version, 13 12 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", "INSTALL.txt")+ "\n" + \16 read("docs", "HISTORY.txt"),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(), 17 16 # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers 18 17 classifiers=[
Note: See TracChangeset
for help on using the changeset viewer.