[Checkins] SVN: z3c.offlinepack/trunk/ - Added missing ``zope.testing`` test depenency declaration.

Michael Howitz mh at gocept.com
Wed Aug 4 02:58:21 EDT 2010


Log message for revision 115426:
  - Added missing ``zope.testing`` test depenency declaration.
  
  - Added change log.
  
  

Changed:
  A   z3c.offlinepack/trunk/CHANGES.txt
  U   z3c.offlinepack/trunk/setup.py

-=-
Added: z3c.offlinepack/trunk/CHANGES.txt
===================================================================
--- z3c.offlinepack/trunk/CHANGES.txt	                        (rev 0)
+++ z3c.offlinepack/trunk/CHANGES.txt	2010-08-04 06:58:21 UTC (rev 115426)
@@ -0,0 +1,17 @@
+============
+ Change log
+============
+
+0.3 (unreleased)
+----------------
+
+- Added missing ``zope.testing`` test depenency declaration.
+
+- Added this change log.
+
+
+0.2 (2008-01-26)
+----------------
+
+- Initial release.
+


Property changes on: z3c.offlinepack/trunk/CHANGES.txt
___________________________________________________________________
Added: svn:keywords
   + Id Rev Date
Added: svn:eol-style
   + native

Modified: z3c.offlinepack/trunk/setup.py
===================================================================
--- z3c.offlinepack/trunk/setup.py	2010-08-04 06:56:28 UTC (rev 115425)
+++ z3c.offlinepack/trunk/setup.py	2010-08-04 06:58:21 UTC (rev 115426)
@@ -1,13 +1,20 @@
 from setuptools import setup, find_packages
 import sys, os
 
+def read(filename):
+    return open(os.path.join(os.path.dirname(__file__),
+                             filename)).read() + "\n\n"
+
+
 version = '0.2'
 
+
 setup(name='z3c.offlinepack',
       version=version,
       description="Pack ZODB databases without running Zope or ZEO",
-      long_description=open(os.path.join(os.path.dirname(__file__),
-                                         'README.txt')).read(),
+      long_description=(
+          read('README.txt') +
+          read('CHANGES.txt')),
       # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
       classifiers=[
         "Framework :: Plone",
@@ -16,7 +23,7 @@
         "Programming Language :: Python",
         "Topic :: Software Development :: Libraries :: Python Modules",
         ],
-      keywords='',
+      keywords='zodb pack',
       author='Ross Patterson',
       author_email='me at rpatterson.net',
       url='http://pypi.python.org/pypi/z3c.offlinepack',
@@ -30,7 +37,12 @@
           # -*- Extra requirements: -*-
           'ZODB3', 'zope.dottedname'
       ],
-      extras_require=dict(test=['zc.buildout', 'zc.recipe.egg']),
+      extras_require=dict(
+          test=[
+              'zc.buildout',
+              'zc.recipe.egg',
+              'zope.testing',
+              ]),
       entry_points="""
       # -*- Entry points: -*-
       [console_scripts]



More information about the checkins mailing list