[Checkins] SVN: zope.app.keyreference/branches/3.4/ Get ready for 3.4.0 release.

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


Log message for revision 81081:
  Get ready for 3.4.0 release.
  

Changed:
  A   zope.app.keyreference/branches/3.4/CHANGES.txt
  U   zope.app.keyreference/branches/3.4/README.txt
  U   zope.app.keyreference/branches/3.4/buildout.cfg
  D   zope.app.keyreference/branches/3.4/setup.cfg
  U   zope.app.keyreference/branches/3.4/setup.py
  _U  zope.app.keyreference/branches/3.4/src/

-=-
Added: zope.app.keyreference/branches/3.4/CHANGES.txt
===================================================================
--- zope.app.keyreference/branches/3.4/CHANGES.txt	                        (rev 0)
+++ zope.app.keyreference/branches/3.4/CHANGES.txt	2007-10-25 01:22:11 UTC (rev 81081)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-24)
+------------------
+
+- Initial release independent of the main Zope tree.


Property changes on: zope.app.keyreference/branches/3.4/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.app.keyreference/branches/3.4/README.txt
===================================================================
--- zope.app.keyreference/branches/3.4/README.txt	2007-10-25 00:47:59 UTC (rev 81080)
+++ zope.app.keyreference/branches/3.4/README.txt	2007-10-25 01:22:11 UTC (rev 81081)
@@ -1,4 +1 @@
-zope.app.keyreference
-=====================
-
-See, src/zope/app/keyreference/README.txt 
+Object references that support stable comparison and hashes.

Modified: zope.app.keyreference/branches/3.4/buildout.cfg
===================================================================
--- zope.app.keyreference/branches/3.4/buildout.cfg	2007-10-25 00:47:59 UTC (rev 81080)
+++ zope.app.keyreference/branches/3.4/buildout.cfg	2007-10-25 01:22:11 UTC (rev 81081)
@@ -1,7 +1,12 @@
 [buildout]
 develop = .
-parts = test
+parts = test py
 
 [test]
 recipe = zc.recipe.testrunner
 eggs = zope.app.keyreference
+
+[py]
+recipe = zc.recipe.egg
+eggs = zope.app.keyreference
+interpreter = py

Deleted: zope.app.keyreference/branches/3.4/setup.cfg
===================================================================
--- zope.app.keyreference/branches/3.4/setup.cfg	2007-10-25 00:47:59 UTC (rev 81080)
+++ zope.app.keyreference/branches/3.4/setup.cfg	2007-10-25 01:22:11 UTC (rev 81081)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.keyreference/branches/3.4/setup.py
===================================================================
--- zope.app.keyreference/branches/3.4/setup.py	2007-10-25 00:47:59 UTC (rev 81080)
+++ zope.app.keyreference/branches/3.4/setup.py	2007-10-25 01:22:11 UTC (rev 81081)
@@ -15,24 +15,43 @@
 
 $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.keyreference',
-      version = '3.4.0b1',
-      url = 'http://svn.zope.org/zope.app.keyreference',
-      license = 'ZPL 2.1',
-      description = 'Zope app.keyreference',
-      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='Key References',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Dcoumentation\n' +
+          '----------------------\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'keyreference', 'persistent.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 key reference persistent",
+      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.persistent',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
       package_dir = {'': 'src'},
-
-      namespace_packages = ['zope', 'zope.app'],
+      namespace_packages=['zope', 'zope.app'],
       install_requires = ['setuptools',
                           'ZODB3',
                           'zope.component',


Property changes on: zope.app.keyreference/branches/3.4/src
___________________________________________________________________
Name: svn:ignore
   + zope.app.keyreference.egg-info




More information about the Checkins mailing list