[Checkins] SVN: Products.GenericSetup/trunk/ Fix PyPI rendering (can't use Sphinx-specific markup in --long-description).

Tres Seaver tseaver at palladion.com
Mon Mar 8 09:41:32 EST 2010


Log message for revision 109833:
  Fix PyPI rendering (can't use Sphinx-specific markup in --long-description).

Changed:
  U   Products.GenericSetup/trunk/README.txt
  U   Products.GenericSetup/trunk/setup.py

-=-
Modified: Products.GenericSetup/trunk/README.txt
===================================================================
--- Products.GenericSetup/trunk/README.txt	2010-03-08 13:50:46 UTC (rev 109832)
+++ Products.GenericSetup/trunk/README.txt	2010-03-08 14:41:32 UTC (rev 109833)
@@ -1 +1,11 @@
-(See docs/index.rst).
+Products.GenericSetup README
+============================
+
+This product provides a mini-framework for expressing the configured
+state of a Zope Site as a set of filesystem artifacts.  These artifacts
+consist of declarative XML files, which spell out the configuration
+settings for each "tool" in the site , and supporting scripts / templates,
+in their "canonical" filesystem representations.
+
+See ``docs/index.rst`` for full documentation.  This documentation can
+also be found online:  http://packages.python.org/Products.GenericSetup/

Modified: Products.GenericSetup/trunk/setup.py
===================================================================
--- Products.GenericSetup/trunk/setup.py	2010-03-08 13:50:46 UTC (rev 109832)
+++ Products.GenericSetup/trunk/setup.py	2010-03-08 14:41:32 UTC (rev 109833)
@@ -17,14 +17,12 @@
     return f.read()
 
 _boundary = '\n' + ('-' * 60) + '\n\n'
-README = ( _docs_doc('index.rst')
+README = ( open('README.txt').read()
          + _boundary
          + _docs_doc('CHANGES.rst')
-         + _boundary
-         + "\nDownload\n========"
          )
 
-setup(name='Products.%s' % NAME,
+setup(name='Products.GenericSetup',
       version=_package_doc('version.txt').strip(),
       description='Read Zope configuration state from profile dirs / tarballs',
       long_description=README,



More information about the checkins mailing list