[Checkins] SVN: zc.recipe.rhrc/trunk/setup.py Updated release #

Jim Fulton jim at zope.com
Tue Jan 15 11:43:33 EST 2008


Log message for revision 82898:
  Updated release #
  

Changed:
  U   zc.recipe.rhrc/trunk/setup.py

-=-
Modified: zc.recipe.rhrc/trunk/setup.py
===================================================================
--- zc.recipe.rhrc/trunk/setup.py	2008-01-15 16:43:29 UTC (rev 82897)
+++ zc.recipe.rhrc/trunk/setup.py	2008-01-15 16:43:33 UTC (rev 82898)
@@ -1,6 +1,23 @@
+import os
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
+long_description=(
+        read('README.txt')
+        + '\n' +
+        'Detailed Documentation\n'
+        '**********************\n'
+        + '\n' +
+        read('src', 'zc', 'recipe', 'rhrc', 'README.txt')
+        + '\n' +
+        'Download\n'
+        '**********************\n'
+        )
+
+open('doc.txt', 'w').write(long_description)
+
 entry_points = '''
 [zc.buildout]
 default=zc.recipe.rhrc:Recipe
@@ -17,7 +34,7 @@
     author_email = 'jim at zope.com',
     description = 'ZC Buildout recipe for Redhat RC scripts',
     license = 'ZPL 2.1',
-    keywords = 'zope3',
+    keywords = 'buildout',
     
     entry_points=entry_points,
     packages = find_packages('src'),



More information about the Checkins mailing list