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

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Oct 11 03:10:42 EDT 2007


Log message for revision 80839:
  Get ready for release.
  

Changed:
  A   zope.app.container/trunk/CHANGES.txt
  U   zope.app.container/trunk/README.txt
  U   zope.app.container/trunk/buildout.cfg
  U   zope.app.container/trunk/setup.py
  U   zope.app.container/trunk/src/zope/app/container/constraints.txt

-=-
Added: zope.app.container/trunk/CHANGES.txt
===================================================================
--- zope.app.container/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.container/trunk/CHANGES.txt	2007-10-11 07:10:42 UTC (rev 80839)
@@ -0,0 +1,23 @@
+=======
+CHANGES
+=======
+
+3.5.0 (2007-10-11)
+------------------
+
+- Updated package meta-data.
+
+3.5.0a1 (2007-06-29)
+--------------------
+
+* Updated bootstrap script to current version.
+
+* Store length of ``BTreeContainer`` in its own ``Length`` object for faster
+  ``__len__`` implementation of huge containers.
+
+
+3.4.0a1 (2007-04-22)
+--------------------
+
+- Initial release as a separate project, corresponds to ``zope.app.container``
+  from Zope 3.4.0a1.


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

Modified: zope.app.container/trunk/README.txt
===================================================================
--- zope.app.container/trunk/README.txt	2007-10-11 07:04:43 UTC (rev 80838)
+++ zope.app.container/trunk/README.txt	2007-10-11 07:10:42 UTC (rev 80839)
@@ -1,20 +1,3 @@
 This package define interfaces of container components, and provides
 sample container implementations such as a BTreeContainer and
 OrderedContainer.
-
-Changes
-=======
-
-3.5.0a1 (2007-06-29)
---------------------
-
-* Updated bootstrap script to current version.
-
-* Store length of BTreeContainer in its own Length object for faster
-  __len__ implementation of huge containers.
-
-3.4.0a1 (2007-04-22)
---------------------
-
-Initial release as a separate project, corresponds to
-zope.app.container from Zope 3.4.0a1

Modified: zope.app.container/trunk/buildout.cfg
===================================================================
--- zope.app.container/trunk/buildout.cfg	2007-10-11 07:04:43 UTC (rev 80838)
+++ zope.app.container/trunk/buildout.cfg	2007-10-11 07:10:42 UTC (rev 80839)
@@ -1,10 +1,8 @@
 [buildout]
-develop = . 
+develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner
-defaults = ['--tests-pattern', '^f?tests$']
 eggs = zope.app.container [test]
 

Modified: zope.app.container/trunk/setup.py
===================================================================
--- zope.app.container/trunk/setup.py	2007-10-11 07:04:43 UTC (rev 80838)
+++ zope.app.container/trunk/setup.py	2007-10-11 07:10:42 UTC (rev 80839)
@@ -18,18 +18,40 @@
 import os
 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.container',
-      version = '3.5.0a2',
+      version = '3.5.0',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Zope Container',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Documentation\n'
+          '**********************\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'container', 'constraints.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 container",
+      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.container',
       license='ZPL 2.1',
-      description='Zope container',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      long_description=open('README.txt').read(),
-
       packages=find_packages('src'),
       package_dir = {'': 'src'},
-
+      namespace_packages=['zope', 'zope.app'],
       ext_modules=[Extension("zope.app.container._zope_app_container_contained",
                              [os.path.join("src", "zope", "app", "container",
                                            "_zope_app_container_contained.c")
@@ -40,7 +62,6 @@
                                 'zope.app.securitypolicy',
                                 'zope.app.zcmlfiles',
                                 'zope.app.file']),
-      namespace_packages=['zope', 'zope.app'],
       install_requires=['setuptools',
                         'zope.interface',
                         'zope.deprecation',
@@ -66,6 +87,5 @@
                         'ZODB3',
                         ],
       include_package_data = True,
-
       zip_safe = False,
       )

Modified: zope.app.container/trunk/src/zope/app/container/constraints.txt
===================================================================
--- zope.app.container/trunk/src/zope/app/container/constraints.txt	2007-10-11 07:04:43 UTC (rev 80838)
+++ zope.app.container/trunk/src/zope/app/container/constraints.txt	2007-10-11 07:10:42 UTC (rev 80839)
@@ -7,7 +7,7 @@
 interfaces.  Let's define some container and item interfaces:
 
     >>> from zope.app.container.interfaces import IContainer, IContained
-    >>> from zope.app.container.constraints import containers, contains    
+    >>> from zope.app.container.constraints import containers, contains
 
     >>> class IBuddyFolder(IContainer):
     ...     contains('.IBuddy')
@@ -22,7 +22,7 @@
     >>> class IBuddy(IContained):
     ...     containers(IBuddyFolder)
 
- 
+
 Now, with these interfaces in place, we can define Buddy and
 BuddyFolder classes and verify that we can put buddies in buddy
 folders:
@@ -93,5 +93,5 @@
 
     >>> checkFactory(Contacts(), 'x', Factory(Buddy))
     False
-    
 
+



More information about the Checkins mailing list