[Checkins] SVN: zc.sshtunnel/trunk/s - added not declared test dependency on zope.testing

Michael Howitz mh at gocept.com
Thu May 5 02:41:56 EDT 2011


Log message for revision 121552:
  - added not declared test dependency on zope.testing
  - fixed a test to run with current buildout version
  - fixed author_email
  

Changed:
  U   zc.sshtunnel/trunk/setup.py
  U   zc.sshtunnel/trunk/src/zc/sshtunnel/README.txt

-=-
Modified: zc.sshtunnel/trunk/setup.py
===================================================================
--- zc.sshtunnel/trunk/setup.py	2011-05-04 15:40:36 UTC (rev 121551)
+++ zc.sshtunnel/trunk/setup.py	2011-05-05 06:41:55 UTC (rev 121552)
@@ -12,14 +12,18 @@
     version="1.2",
     description="zc.buildout recipe to manage an SSH tunnel.",
     author="Zope Corporation and contributors",
-    author_email="zope3-dev at zope.org",
+    author_email="zope-dev at zope.org",
     license="ZPL 2.1",
     packages=["zc", "zc.sshtunnel"],
     package_dir={"": "src"},
     namespace_packages=["zc"],
     install_requires=["setuptools"],
     entry_points=entry_points,
-    extras_require={"test": "zc.buildout"},
+    extras_require={
+        "test": ["zc.buildout",
+                 "zope.testing",
+                 ],
+        },
     include_package_data=True,
     zip_safe=False,
     classifiers=[

Modified: zc.sshtunnel/trunk/src/zc/sshtunnel/README.txt
===================================================================
--- zc.sshtunnel/trunk/src/zc/sshtunnel/README.txt	2011-05-04 15:40:36 UTC (rev 121551)
+++ zc.sshtunnel/trunk/src/zc/sshtunnel/README.txt	2011-05-05 06:41:55 UTC (rev 121552)
@@ -30,7 +30,7 @@
 Building this out creates a single script in the bin/ directory::
 
   >>> print system(join("bin", "buildout")),
-  buildout: Installing my-tunnel
+  Installing my-tunnel
 
   >>> ls("bin")
   -  buildout



More information about the checkins mailing list