- add download link to the PyPI page as well as a better visual delineation between the sections

git-svn-id: http://svn.dataflake.org/svn/Products.LDAPMultiPlugins/trunk@1566 835909ba-7c00-0410-bfa4-884f43845301
This commit is contained in:
jens 2008-06-12 16:50:41 +00:00
parent e2d6c3dedc
commit 89f4fd8f5d
1 changed files with 8 additions and 1 deletions

View File

@ -10,10 +10,17 @@ def _read(name):
f = open(os.path.join(package, name))
return f.read()
_boundary = '\n' + ('-' * 60) + '\n'
setup(name='Products.%s' % NAME,
version=_read('VERSION.txt').strip(),
description='LDAP-backed plugins for the Zope2 PluggableAuthService',
long_description=_read('README.txt')+'\n\n'+_read('CHANGES.txt'),
long_description=( _read('README.txt')
+ _boundary
+ _read('CHANGES.txt')
+ _boundary
+ "\nDownload\n========"
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Zope2",