[Checkins] SVN: z3c.recipe.compattest/trunk/setup.py specify version requirements and improve pypi page readibility

Jan-Wijbrand Kolman janwijbrand at gmail.com
Thu Oct 7 05:37:20 EDT 2010


Log message for revision 117326:
  specify version requirements and improve pypi page readibility

Changed:
  U   z3c.recipe.compattest/trunk/setup.py

-=-
Modified: z3c.recipe.compattest/trunk/setup.py
===================================================================
--- z3c.recipe.compattest/trunk/setup.py	2010-10-07 09:18:54 UTC (rev 117325)
+++ z3c.recipe.compattest/trunk/setup.py	2010-10-07 09:37:20 UTC (rev 117326)
@@ -12,9 +12,16 @@
     description='Buildout recipe to create testrunners for testing compatibility with other packages',
     url='http://pypi.python.org/pypi/z3c.recipe.compattest',
     long_description= (
-        open(os.path.join('src', 'z3c', 'recipe', 'compattest', 'README.txt')).read()
+        '.. contents::'
         + '\n\n'
-        + open('CHANGES.txt').read()),
+        + open('CHANGES.txt').read()
+        + '\n\n'
+        '======================\n'
+        'Detailed Documentation\n'
+        '======================'
+        + '\n\n' +
+        open(os.path.join(
+            'src', 'z3c', 'recipe', 'compattest', 'README.txt')).read()),
     keywords = "zope3 setuptools egg kgs",
     classifiers = [
         'Intended Audience :: Developers',
@@ -28,8 +35,8 @@
     namespace_packages=['z3c', 'z3c.recipe'],
     install_requires=[
         'setuptools',
-        'zc.buildout',
-        'zc.recipe.testrunner',
+        'zc.buildout >= 1.5.1',
+        'zc.recipe.testrunner >= 1.4.0',
         ],
     # zope.dottedname is just used as a dummy package to demonstrate things
     # with, it's not actually imported



More information about the checkins mailing list