[Checkins] SVN: zc.buildoutsftp/branches/dev/ Added missing entry point. and updated release info

Jim Fulton jim at zope.com
Thu Sep 14 15:28:07 EDT 2006


Log message for revision 70179:
  Added missing entry point.  and updated release info
  

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

-=-
Modified: zc.buildoutsftp/branches/dev/CHANGES.txt
===================================================================
--- zc.buildoutsftp/branches/dev/CHANGES.txt	2006-09-14 16:04:01 UTC (rev 70178)
+++ zc.buildoutsftp/branches/dev/CHANGES.txt	2006-09-14 19:28:07 UTC (rev 70179)
@@ -5,7 +5,14 @@
 testing. I'm still trying to figure out how to write automated tests
 for this.
 
+0.2
+---
+
+Added missing entry point.  
+
+Adjusted content-type for index pages to work with setuptools.
+
 0.1
 ---
 
-  Initial release
+Initial release

Modified: zc.buildoutsftp/branches/dev/setup.py
===================================================================
--- zc.buildoutsftp/branches/dev/setup.py	2006-09-14 16:04:01 UTC (rev 70178)
+++ zc.buildoutsftp/branches/dev/setup.py	2006-09-14 19:28:07 UTC (rev 70179)
@@ -3,7 +3,7 @@
 name='zc.buildoutsftp'
 setup(
     name=name,
-    version = "0.1",
+    version = "0.2",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description =
@@ -23,6 +23,9 @@
     namespace_packages = ['zc'],
     install_requires = ['paramiko', 'setuptools'],
     zip_safe=False,
+    entry_points = {'zc.buildout.extension':
+                    ['default = %s.buildoutsftp:install' % name]
+                    },
     )
 
                       



More information about the Checkins mailing list