[Checkins] SVN: martian/trunk/ Prepare release documentation on cheeseshop.

Martijn Faassen faassen at infrae.com
Mon Aug 13 15:03:23 EDT 2007


Log message for revision 78796:
  Prepare release documentation on cheeseshop.
  

Changed:
  U   martian/trunk/CHANGES.txt
  U   martian/trunk/README.txt
  U   martian/trunk/setup.py

-=-
Modified: martian/trunk/CHANGES.txt
===================================================================
--- martian/trunk/CHANGES.txt	2007-08-13 18:56:25 UTC (rev 78795)
+++ martian/trunk/CHANGES.txt	2007-08-13 19:03:23 UTC (rev 78796)
@@ -1,15 +1,24 @@
 CHANGES
-=======
+*******
 
 0.8.1 (2007-08-13)
-------------------
+==================
 
+Feature changes
+---------------
+
 * Don't grok tests or ftests modules.
 
+Bugs fixed
+----------
+
 * Fix a bug where if a class had multiple base classes, this could end up
   in the resultant list multiple times.
   
 0.8 (2007-07-02)
-----------------
+================
 
-Initial public release.
+Feature changes
+---------------
+
+* Initial public release.

Modified: martian/trunk/README.txt
===================================================================
--- martian/trunk/README.txt	2007-08-13 18:56:25 UTC (rev 78795)
+++ martian/trunk/README.txt	2007-08-13 19:03:23 UTC (rev 78796)
@@ -1,5 +1,6 @@
+*******
 Martian
-=======
+*******
 
 "There was so much to grok, so little to grok from." -- Stranger in a
 Strange Land, by Robert A. Heinlein

Modified: martian/trunk/setup.py
===================================================================
--- martian/trunk/setup.py	2007-08-13 18:56:25 UTC (rev 78795)
+++ martian/trunk/setup.py	2007-08-13 19:03:23 UTC (rev 78796)
@@ -1,5 +1,24 @@
+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' +
+    read('CHANGES.txt')
+    + '\n' +
+    'Detailed Documentation\n'
+    '**********************\n'
+    + '\n' +
+    read('src', 'martian', 'README.txt')
+    + '\n' +
+    'Download\n'
+    '********\n'
+    )
+
+    
 setup(
     name='martian',
     version='0.8.1',
@@ -12,6 +31,7 @@
 that uses Martian is the system where it originated: Grok
 (http://grok.zope.org)
 """,
+    long_description=long_description,
     packages=find_packages('src'),
     package_dir = {'': 'src'},
     include_package_data = True,



More information about the Checkins mailing list