[Checkins] SVN: zope.app.ftp/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Oct 24 12:18:09 EDT 2007


Log message for revision 81046:
  Get ready for release.
  

Changed:
  A   zope.app.ftp/trunk/CHANGES.txt
  U   zope.app.ftp/trunk/README.txt
  U   zope.app.ftp/trunk/buildout.cfg
  D   zope.app.ftp/trunk/setup.cfg
  U   zope.app.ftp/trunk/setup.py
  _U  zope.app.ftp/trunk/src/
  U   zope.app.ftp/trunk/src/zope/app/ftp/README.txt

-=-
Added: zope.app.ftp/trunk/CHANGES.txt
===================================================================
--- zope.app.ftp/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.ftp/trunk/CHANGES.txt	2007-10-24 16:18:09 UTC (rev 81046)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-24)
+==================
+
+- Initial release independent of the main Zope tree.


Property changes on: zope.app.ftp/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.app.ftp/trunk/README.txt
===================================================================
--- zope.app.ftp/trunk/README.txt	2007-10-24 15:46:47 UTC (rev 81045)
+++ zope.app.ftp/trunk/README.txt	2007-10-24 16:18:09 UTC (rev 81046)
@@ -1,4 +1 @@
-zope.app.ftp
-===============
-
-See, src/zope/app/ftp/README.txt 
+This package provides an API for clients connecting via FTP.

Modified: zope.app.ftp/trunk/buildout.cfg
===================================================================
--- zope.app.ftp/trunk/buildout.cfg	2007-10-24 15:46:47 UTC (rev 81045)
+++ zope.app.ftp/trunk/buildout.cfg	2007-10-24 16:18:09 UTC (rev 81046)
@@ -1,7 +1,6 @@
 [buildout]
 develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner

Deleted: zope.app.ftp/trunk/setup.cfg
===================================================================
--- zope.app.ftp/trunk/setup.cfg	2007-10-24 15:46:47 UTC (rev 81045)
+++ zope.app.ftp/trunk/setup.cfg	2007-10-24 16:18:09 UTC (rev 81046)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.ftp/trunk/setup.py
===================================================================
--- zope.app.ftp/trunk/setup.py	2007-10-24 15:46:47 UTC (rev 81045)
+++ zope.app.ftp/trunk/setup.py	2007-10-24 16:18:09 UTC (rev 81046)
@@ -15,24 +15,44 @@
 
 $Id$
 """
-
 import os
-
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(name = 'zope.app.ftp',
-      version = '3.4.0b1',
-      url = 'http://svn.zope.org/zope.app.ftp',
-      license = 'ZPL 2.1',
-      description = 'Zope app.ftp',
-      author = 'Zope Corporation and Contributors',
-      author_email = 'zope3-dev at zope.org',
-      long_description = "",
-
-      packages = find_packages('src'),
+      version = '3.4.0',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Zope FTP Support',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Dcoumentation\n' +
+          '----------------------\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'ftp', 'README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 ftp",
+      classifiers = [
+          'Development Status :: 5 - Production/Stable',
+          'Environment :: Web Environment',
+          'Intended Audience :: Developers',
+          'License :: OSI Approved :: Zope Public License',
+          'Programming Language :: Python',
+          'Natural Language :: English',
+          'Operating System :: OS Independent',
+          'Topic :: Internet :: WWW/HTTP',
+          'Framework :: Zope3'],
+      url='http://cheeseshop.python.org/pypi/zope.app.ftp',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
       package_dir = {'': 'src'},
-
-      namespace_packages = ['zope', 'zope.app'],
+      namespace_packages=['zope', 'zope.app'],
+      extras_require = dict(test=['zope.app.testing',]),
       install_requires = ['setuptools',
                           'zope.app.container',
                           'zope.component',
@@ -45,8 +65,6 @@
                           'zope.publisher',
                           'zope.security',
                           ],
-      extras_require = dict(test=['zope.app.testing',]),
       include_package_data = True,
-
       zip_safe = False,
       )


Property changes on: zope.app.ftp/trunk/src
___________________________________________________________________
Name: svn:ignore
   + zope.app.ftp.egg-info


Modified: zope.app.ftp/trunk/src/zope/app/ftp/README.txt
===================================================================
--- zope.app.ftp/trunk/src/zope/app/ftp/README.txt	2007-10-24 15:46:47 UTC (rev 81045)
+++ zope.app.ftp/trunk/src/zope/app/ftp/README.txt	2007-10-24 16:18:09 UTC (rev 81046)
@@ -18,7 +18,7 @@
   looks up a separate view for each method defined in
   `zope.publisher.interfaces.ftp.IFTPPublisher`.
 
-  We provide a single class here that implements all of these methods. 
+  We provide a single class here that implements all of these methods.
 
   The view, in turn, uses adapters for the `IReadFile`, `IWriteFile`,
   `IReadDirectory`, `IWriteDirectory`, `IFileFactory`, and



More information about the Checkins mailing list