[Checkins] SVN: zope.datetime/trunk/ Remove zope.testing from tests_require. Include changelog in long description.

Gediminas Paulauskas menesis at pov.lt
Tue Nov 29 16:28:07 UTC 2011


Log message for revision 123524:
  Remove zope.testing from tests_require. Include changelog in long description.

Changed:
  U   zope.datetime/trunk/CHANGES.txt
  U   zope.datetime/trunk/setup.py

-=-
Modified: zope.datetime/trunk/CHANGES.txt
===================================================================
--- zope.datetime/trunk/CHANGES.txt	2011-11-29 16:16:58 UTC (rev 123523)
+++ zope.datetime/trunk/CHANGES.txt	2011-11-29 16:28:06 UTC (rev 123524)
@@ -6,6 +6,7 @@
 
 - Added test cases from LP #139360 (all passed without modification to
   the ``parse`` function).
+- Remove unneeded ``zope.testing`` dependency.
 
 3.4.0 (2007-07-20)
 ------------------

Modified: zope.datetime/trunk/setup.py
===================================================================
--- zope.datetime/trunk/setup.py	2011-11-29 16:16:58 UTC (rev 123523)
+++ zope.datetime/trunk/setup.py	2011-11-29 16:28:06 UTC (rev 123524)
@@ -23,20 +23,25 @@
 
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(name='zope.datetime',
       version = '3.4.1dev',
       url='http://pypi.python.org/pypi/zope.datetime',
       license='ZPL 2.1',
       description='Zope datetime',
-      author='Zope Foundation and Contributors',
+      author='Zope Corporation and Contributors',
       author_email='zope-dev at zope.org',
-      long_description="Commonly used date and time related utility functions.",
+      long_description=(
+          "Commonly used date and time related utility functions.\n"
+          + '\n' +
+          read('CHANGES.txt')),
 
       packages=find_packages('src'),
       package_dir = {'': 'src'},
 
       namespace_packages=['zope',],
-      tests_require = ['zope.testing'],
       install_requires=['setuptools'],
       include_package_data = True,
 



More information about the checkins mailing list