[Checkins] SVN: zc.buildoutsftp/branches/dev/ Updated release info.

Jim Fulton jim at zope.com
Thu Sep 14 08:04:37 EDT 2006


Log message for revision 70171:
  Updated release info.
  

Changed:
  A   zc.buildoutsftp/branches/dev/CHANGES.txt
  U   zc.buildoutsftp/branches/dev/setup.py

-=-
Added: zc.buildoutsftp/branches/dev/CHANGES.txt
===================================================================
--- zc.buildoutsftp/branches/dev/CHANGES.txt	2006-09-14 11:24:45 UTC (rev 70170)
+++ zc.buildoutsftp/branches/dev/CHANGES.txt	2006-09-14 12:04:37 UTC (rev 70171)
@@ -0,0 +1,11 @@
+Status and Change History
+=========================
+
+This package is experimental.  It seems to work based on manual
+testing. I'm still trying to figure out how to write automated tests
+for this.
+
+0.1
+---
+
+  Initial release


Property changes on: zc.buildoutsftp/branches/dev/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zc.buildoutsftp/branches/dev/setup.py
===================================================================
--- zc.buildoutsftp/branches/dev/setup.py	2006-09-14 11:24:45 UTC (rev 70170)
+++ zc.buildoutsftp/branches/dev/setup.py	2006-09-14 12:04:37 UTC (rev 70171)
@@ -7,8 +7,12 @@
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description =
-    "Specialized urllib2 plugin for sftp for use in zc.buildout.",
-    long_description = open('README.txt').read(),
+    "Specialized zc.buildout plugin to add sftp support.",
+    long_description = (
+        open('README.txt').read()
+        +
+        open('CHANGES.txt').read()
+        ),
     license = "ZPL 2.1",
     keywords = "buildout",
     url='http://www.python.org/pypi/'+name,
@@ -18,8 +22,6 @@
     package_dir = {'':'src'},
     namespace_packages = ['zc'],
     install_requires = ['paramiko', 'setuptools'],
-    tests_require = ['zope.testing'],
-    test_suite = name+'.tests.test_suite',
     zip_safe=False,
     )
 



More information about the Checkins mailing list