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

Baiju M baiju.m.mail at gmail.com
Sun Sep 2 02:54:42 EDT 2007


Log message for revision 79436:
  Prepare for 3.4.0 release
    - description and long-description updated
    - remove setup.cfg
  

Changed:
  A   zope.rdb/trunk/CHANGES.txt
  U   zope.rdb/trunk/README.txt
  D   zope.rdb/trunk/setup.cfg
  U   zope.rdb/trunk/setup.py

-=-
Added: zope.rdb/trunk/CHANGES.txt
===================================================================
--- zope.rdb/trunk/CHANGES.txt	                        (rev 0)
+++ zope.rdb/trunk/CHANGES.txt	2007-09-02 06:54:42 UTC (rev 79436)
@@ -0,0 +1,7 @@
+Change History
+==============
+
+3.4.0 (2007/09/01)
+------------------
+
+Initial release as an independent package


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

Modified: zope.rdb/trunk/README.txt
===================================================================
--- zope.rdb/trunk/README.txt	2007-09-02 06:35:05 UTC (rev 79435)
+++ zope.rdb/trunk/README.txt	2007-09-02 06:54:42 UTC (rev 79436)
@@ -1,11 +1,13 @@
-zope.rdb Package Readme
-=======================
+zope.rdb
+********
 
+.. contents::
+
 Overview
---------
+========
 
 Zope RDBMS Transaction Integration.
 
-Provides a proxy for interaction between the zope transaction framework and the
-db-api connection.  Databases which want to support sub transactions need to
-implement their own proxy.
+Provides a proxy for interaction between the zope transaction
+framework and the db-api connection.  Databases which want to support
+sub transactions need to implement their own proxy.

Deleted: zope.rdb/trunk/setup.cfg
===================================================================
--- zope.rdb/trunk/setup.cfg	2007-09-02 06:35:05 UTC (rev 79435)
+++ zope.rdb/trunk/setup.cfg	2007-09-02 06:54:42 UTC (rev 79436)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.rdb/trunk/setup.py
===================================================================
--- zope.rdb/trunk/setup.py	2007-09-02 06:35:05 UTC (rev 79435)
+++ zope.rdb/trunk/setup.py	2007-09-02 06:54:42 UTC (rev 79436)
@@ -20,36 +20,51 @@
 
 from setuptools import setup, find_packages
 
-setup(name='zope.rdb',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.rdb',
-      license='ZPL 2.1',
-      description='Zope rdb',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      long_description="Zope RDBMS Transaction Integration."
-                       "Provides a proxy for interaction between"
-                       "the zope transaction framework and the"
-                       "db-api connection.  Databases which want to"
-                       "support sub transactions need to implement"
-                       "their own proxy.",
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
+long_description = (
+    read('README.txt')
+    + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
+    'Download\n'
+    '********\n'
+    )
 
-      namespace_packages=['zope',],
-      tests_require = ['zope.testing'],
-      install_requires=['setuptools',
-                        'ZODB3',
-                        'zope.interface',
-                        'zope.i18nmessageid',
-                        'zope.security',
-                        'zope.configuration',
-                        'zope.schema',
-                        'zope.thread',
-                        'zope.app.container',
-                        ],
-      include_package_data = True,
+setup(
+    name='zope.rdb',
+    version='3.4.0',
+    url='http://pypi.python.org/pypi/zope.rdb',
+    author='Zope Corporation and Contributors',
+    author_email='zope3-dev at zope.org',
+    license='ZPL 2.1',
+    classifiers=[
+        'Development Status :: 5 - Production/Stable',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Operating System :: OS Independent',
+        'Topic :: Internet :: WWW/HTTP',
+        'Topic :: Software Development',
+        'Framework :: Zope3',
+        ],
+    description='Zope RDBMS transaction integration',
+    long_description=long_description,
 
-      zip_safe = False,
-      )
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['zope',],
+    include_package_data=True,
+    install_requires=['setuptools',
+                      'ZODB3',
+                      'zope.interface',
+                      'zope.i18nmessageid',
+                      'zope.security',
+                      'zope.configuration',
+                      'zope.schema',
+                      'zope.thread',
+                      'zope.app.container',
+                      ],
+    zip_safe=False,
+    )



More information about the Checkins mailing list