[Checkins] SVN: z3c.menu.ready2go/trunk/setup.py added doctest to long_description so they show up on pypi-page

Michael Howitz mh at gocept.com
Sat Jan 3 08:38:18 EST 2009


Log message for revision 94472:
  added doctest to long_description so they show up on pypi-page

Changed:
  U   z3c.menu.ready2go/trunk/setup.py

-=-
Modified: z3c.menu.ready2go/trunk/setup.py
===================================================================
--- z3c.menu.ready2go/trunk/setup.py	2009-01-03 13:25:55 UTC (rev 94471)
+++ z3c.menu.ready2go/trunk/setup.py	2009-01-03 13:38:18 UTC (rev 94472)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Foundation and Contributors.
+# Copyright (c) 2007-2009 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,10 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Setup
 
-$Id:$
-"""
 import os
 from setuptools import setup, find_packages
 
@@ -29,7 +26,11 @@
     description = "A ready to go menu for Zope3",
     long_description=(
         read('README.txt')
+        + '\n\n.. contents::\n\n' +
+        read('src', 'z3c', 'menu', 'ready2go', 'README.txt')
         + '\n\n' +
+        read('src', 'z3c', 'menu', 'ready2go', 'zcml.txt')
+        + '\n\n' +
         read('CHANGES.txt')
         ),
     license = "ZPL 2.1",
@@ -76,4 +77,4 @@
         'zope.viewlet',
         ],
     zip_safe = False,
-)
\ No newline at end of file
+)



More information about the Checkins mailing list