Changeset 1232 in products


Ignore:
Timestamp:
Aug 11, 2009 9:17:41 AM (15 years ago)
Author:
liebster
Message:

Added MANIFEST.in

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 dev 
     11.1.4 
  • quintagroup.pingtool/trunk/setup.py

    r885 r1232  
    66from setuptools import setup, find_packages 
    77 
    8 def read(*rnames): 
    9     return open(os.path.join(os.path.dirname(__file__), *rnames)).read() 
    10      
     8version = '1.1.4' 
     9 
    1110setup(name='quintagroup.pingtool', 
    12       version=read("quintagroup", "pingtool", "version.txt"), 
     11      version=version, 
    1312      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(), 
    1716      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers 
    1817      classifiers=[ 
Note: See TracChangeset for help on using the changeset viewer.