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

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Oct 24 10:32:17 EDT 2007


Log message for revision 81036:
  Get ready for release.
  

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

-=-
Added: zope.app.folder/trunk/CHANGES.txt
===================================================================
--- zope.app.folder/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.folder/trunk/CHANGES.txt	2007-10-24 14:32:17 UTC (rev 81036)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-24)
+------------------
+
+- Initial release independent of the main Zope tree.


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

Added: zope.app.folder/trunk/README.txt
===================================================================
--- zope.app.folder/trunk/README.txt	                        (rev 0)
+++ zope.app.folder/trunk/README.txt	2007-10-24 14:32:17 UTC (rev 81036)
@@ -0,0 +1,3 @@
+This packages provides the standard Folder content type for Zope 3. It also
+implements the root folder of a Zope application. Folders can also be
+converted to sites, which allow one to register components locally.


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

Modified: zope.app.folder/trunk/buildout.cfg
===================================================================
--- zope.app.folder/trunk/buildout.cfg	2007-10-24 14:17:16 UTC (rev 81035)
+++ zope.app.folder/trunk/buildout.cfg	2007-10-24 14:32:17 UTC (rev 81036)
@@ -1,7 +1,6 @@
 [buildout]
-develop = . 
+develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner

Deleted: zope.app.folder/trunk/setup.cfg
===================================================================
--- zope.app.folder/trunk/setup.cfg	2007-10-24 14:17:16 UTC (rev 81035)
+++ zope.app.folder/trunk/setup.cfg	2007-10-24 14:32:17 UTC (rev 81036)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.folder/trunk/setup.py
===================================================================
--- zope.app.folder/trunk/setup.py	2007-10-24 14:17:16 UTC (rev 81035)
+++ zope.app.folder/trunk/setup.py	2007-10-24 14:32:17 UTC (rev 81036)
@@ -15,37 +15,59 @@
 
 $Id$
 """
-
 import os
+from setuptools import setup, find_packages
 
-from setuptools import setup, find_packages, Extension
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.app.folder',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.app.folder',
-      license='ZPL 2.1',
+      version = '3.4.0',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-	  packages=find_packages('src'),
-	  package_dir = {'': 'src'},
+      description='Folder and Site -- Zope 3 Content Components',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Dcoumentation\n' +
+          '----------------------\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'folder', 'filerepresentation.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 folder site local component",
+      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.folder',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['zope', 'zope.app'],
       extras_require=dict(test=['zope.app.testing',
                                 'zope.app.zcmlfiles']),
-      namespace_packages=['zope', 'zope.app'],
       install_requires=['setuptools',
+                        'zope.datetime',
+                        'zope.dublincore',
+                        'zope.event',
+                        'zope.interface',
                         'zope.schema',
-                        'zope.interface',
-                        'zope.event',
                         'zope.security',
-                        'zope.dublincore',
                         'zope.traversing',
+                        'zope.app.authentication',
+                        'zope.app.component',
                         'zope.app.container',
-                        'zope.app.component',
-                        'zope.datetime',
-                        'zope.app.authentication',
                         'zope.app.security',
                         'ZODB3',
                         ],
       include_package_data = True,
-
       zip_safe = False,
       )


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




More information about the Checkins mailing list