[Checkins] SVN: zope.annotation/trunk/ Prepare for 3.4.0 release

Baiju M baiju.m.mail at gmail.com
Wed Aug 29 05:42:57 EDT 2007


Log message for revision 79338:
  Prepare for 3.4.0 release
  

Changed:
  U   zope.annotation/trunk/CHANGES.txt
  A   zope.annotation/trunk/README.txt
  UU  zope.annotation/trunk/bootstrap.py
  U   zope.annotation/trunk/buildout.cfg
  D   zope.annotation/trunk/setup.cfg
  UU  zope.annotation/trunk/setup.py

-=-
Modified: zope.annotation/trunk/CHANGES.txt
===================================================================
--- zope.annotation/trunk/CHANGES.txt	2007-08-29 06:33:02 UTC (rev 79337)
+++ zope.annotation/trunk/CHANGES.txt	2007-08-29 09:42:56 UTC (rev 79338)
@@ -2,9 +2,11 @@
 Changes for zope.annotation
 ===========================
 
-3.4.0b1
-=======
 
-* Annotation factories are no longer containing the factored object. Instead
-  the objects are located using zope.location. This removes a dependency to
-  zope.app.container.
+==================
+3.4.0 (2007-08-29)
+==================
+
+- Annotation factories are no longer containing the factored object.
+  Instead the objects are located using zope.location .  This removes
+  a dependency to zope.app.container .

Added: zope.annotation/trunk/README.txt
===================================================================
--- zope.annotation/trunk/README.txt	                        (rev 0)
+++ zope.annotation/trunk/README.txt	2007-08-29 09:42:56 UTC (rev 79338)
@@ -0,0 +1,4 @@
+Zope Annotation
+***************
+
+.. conetents::


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

Modified: zope.annotation/trunk/bootstrap.py
===================================================================
--- zope.annotation/trunk/bootstrap.py	2007-08-29 06:33:02 UTC (rev 79337)
+++ zope.annotation/trunk/bootstrap.py	2007-08-29 09:42:56 UTC (rev 79338)
@@ -17,7 +17,7 @@
 The script accepts buildout command-line options, so you can
 use the -c option to specify an alternate configuration file.
 
-$Id: bootstrap.py 72703 2007-02-20 11:49:26Z jim $
+$Id$
 """
 
 import os, shutil, sys, tempfile, urllib2


Property changes on: zope.annotation/trunk/bootstrap.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: zope.annotation/trunk/buildout.cfg
===================================================================
--- zope.annotation/trunk/buildout.cfg	2007-08-29 06:33:02 UTC (rev 79337)
+++ zope.annotation/trunk/buildout.cfg	2007-08-29 09:42:56 UTC (rev 79338)
@@ -5,4 +5,4 @@
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.annotation
+eggs = zope.annotation [test]

Deleted: zope.annotation/trunk/setup.cfg
===================================================================
--- zope.annotation/trunk/setup.cfg	2007-08-29 06:33:02 UTC (rev 79337)
+++ zope.annotation/trunk/setup.cfg	2007-08-29 09:42:56 UTC (rev 79338)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.annotation/trunk/setup.py
===================================================================
--- zope.annotation/trunk/setup.py	2007-08-29 06:33:02 UTC (rev 79337)
+++ zope.annotation/trunk/setup.py	2007-08-29 09:42:56 UTC (rev 79338)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Corporation and Contributors.
+# Copyright (c) 2006-2007 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -20,23 +20,51 @@
 
 from setuptools import setup, find_packages
 
-setup(name='zope.annotation',
-      version='3.4.0b1',
-      url='http://svn.zope.org/zope.annotation',
-      license='ZPL 2.1',
-      description='Zope annotation',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      long_description="Annotations store arbitrary application"
-                       "data under package-unique keys.",
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope',],
-      install_requires=['setuptools',
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+long_description = (
+    read('README.txt')
+    + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
+    'Detailed Documentation\n'
+    '**********************\n'
+    + '\n' +
+    read('src', 'zope', 'annotation', 'README.txt') 
+    )
+
+setup(
+    name = 'zope.annotation',
+    version = '3.4.0',
+    url = 'http://pypi.python.org/pypi/zope.annotation',
+    license = 'ZPL 2.1',
+    description = 'Zope annotation',
+    author = 'Zope Corporation and Contributors',
+    author_email = 'zope3-dev at zope.org',
+    classifiers = [
+        'Development Status :: 5 - Production/Stable',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Topic :: Internet :: WWW/HTTP',
+        'Topic :: Software Development',
+        ],
+    long_description = long_description,
+    packages = find_packages('src'),
+    package_dir = {'': 'src'},
+    namespace_packages = ['zope',],
+    install_requires = ['setuptools',
                         'zope.interface',
                         'zope.component',
                         'zope.location>=3.4.0b1.dev-r78903',
                         ],
-      include_package_data = True,
-      zip_safe = False,
-      )
+    extras_require = dict(
+        test = ['zope.testing',
+                'ZODB3'],
+        ),
+    include_package_data = True,
+    zip_safe = False,
+    )


Property changes on: zope.annotation/trunk/setup.py
___________________________________________________________________
Name: svn:keywords
   + Id



More information about the Checkins mailing list