[Checkins] SVN: z3c.rest/trunk/setup.py version bump.

Stephan Richter srichter at cosmos.phy.tufts.edu
Mon Mar 3 09:55:12 EST 2008


Log message for revision 84444:
  version bump.
  

Changed:
  U   z3c.rest/trunk/setup.py

-=-
Modified: z3c.rest/trunk/setup.py
===================================================================
--- z3c.rest/trunk/setup.py	2008-03-03 14:54:34 UTC (rev 84443)
+++ z3c.rest/trunk/setup.py	2008-03-03 14:55:12 UTC (rev 84444)
@@ -21,15 +21,27 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
+chapters = '\n'.join(
+    [read('src', 'z3c', 'rest', name)
+    for name in ('README.txt',
+                 'client.txt',
+                 'null.txt',
+                 'traverser.txt',
+                 'rest.txt')])
+
 setup (
     name='z3c.rest',
-    version='0.1.0',
+    version='0.2.0dev',
     author = "Stephan Richter and the Zope Community",
     author_email = "zope3-dev at zope.org",
     description = "A REST Framework for Zope 3 Applications",
     long_description=(
         read('README.txt')
         + '\n\n' +
+        'Detailed Documentation\n'
+        '**********************\n'
+        + '\n' + chapters
+        + '\n\n' +
         read('CHANGES.txt')
         ),
     license = "ZPL 2.1",



More information about the Checkins mailing list