[Checkins] SVN: zope.sqlalchemy/tags/0.2/ tag 0.2

Laurence Rowe l at lrowe.co.uk
Sat Jun 28 09:49:55 EDT 2008


Log message for revision 87842:
  tag 0.2

Changed:
  A   zope.sqlalchemy/tags/0.2/
  D   zope.sqlalchemy/tags/0.2/CHANGES.txt
  A   zope.sqlalchemy/tags/0.2/CHANGES.txt
  D   zope.sqlalchemy/tags/0.2/setup.py
  A   zope.sqlalchemy/tags/0.2/setup.py
  D   zope.sqlalchemy/tags/0.2/src/zope/sqlalchemy/__init__.py
  A   zope.sqlalchemy/tags/0.2/src/zope/sqlalchemy/__init__.py

-=-
Copied: zope.sqlalchemy/tags/0.2 (from rev 87838, zope.sqlalchemy/trunk)

Deleted: zope.sqlalchemy/tags/0.2/CHANGES.txt
===================================================================
--- zope.sqlalchemy/trunk/CHANGES.txt	2008-06-28 09:12:21 UTC (rev 87838)
+++ zope.sqlalchemy/tags/0.2/CHANGES.txt	2008-06-28 13:49:55 UTC (rev 87842)
@@ -1,15 +0,0 @@
-zope.sqlalchemy changes
-***********************
-
-0.2 (unreleased)
-================
-
-Features changes
-----------------
-
-* Updated to support SQLAlchemy 0.5.
-
-0.1
-===
-
-Initial public release.

Copied: zope.sqlalchemy/tags/0.2/CHANGES.txt (from rev 87841, zope.sqlalchemy/trunk/CHANGES.txt)
===================================================================
--- zope.sqlalchemy/tags/0.2/CHANGES.txt	                        (rev 0)
+++ zope.sqlalchemy/tags/0.2/CHANGES.txt	2008-06-28 13:49:55 UTC (rev 87842)
@@ -0,0 +1,15 @@
+zope.sqlalchemy changes
+***********************
+
+0.2 (2008-06-28)
+================
+
+Feature changes
+---------------
+
+* Updated to support SQLAlchemy 0.5. (0.4.6 is still supported).
+
+0.1 (2008-05-15)
+================
+
+Initial public release.

Deleted: zope.sqlalchemy/tags/0.2/setup.py
===================================================================
--- zope.sqlalchemy/trunk/setup.py	2008-06-28 09:12:21 UTC (rev 87838)
+++ zope.sqlalchemy/tags/0.2/setup.py	2008-06-28 13:49:55 UTC (rev 87842)
@@ -1,54 +0,0 @@
-from setuptools import setup, find_packages
-import sys, os
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-def desc(*texts):
-    return '\n'.join(texts)
-
-SVN_VERSION = "`SVN version <svn://svn.zope.org/repos/main/zope.sqlalchemy/trunk#egg=zope.sqlalchemy-dev>`_\n"
-
-long_description = desc(
-    read('README.txt'),
-    read('src', 'zope', 'sqlalchemy', 'README.txt'),
-    SVN_VERSION,
-    read('CHANGES.txt'),
-    'Download\n********\n',
-    )
-
-setup(name='zope.sqlalchemy',
-      version='0.2dev',
-      description="Minimal Zope/SQLAlchemy transaction integration",
-      long_description=long_description,
-      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
-      classifiers=[
-        "Framework :: Zope3",
-        "Programming Language :: Python",
-        "License :: OSI Approved :: Zope Public License",
-        "Topic :: Software Development :: Libraries :: Python Modules",
-        ],
-      keywords='',
-      author='Laurence Rowe',
-      author_email='laurence at lrowe.co.uk',
-      url='http://pypi.python.org/pypi/zope.sqlalchemy',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'':'src'},
-      namespace_packages=['zope'],
-      include_package_data=True,
-      zip_safe=False,
-      install_requires=[
-          # -*- Extra requirements: -*-
-          'setuptools',
-          'SQLAlchemy>=0.4.6',
-          'transaction',
-          'zope.interface',
-      ],
-      entry_points="""
-      # -*- Entry points: -*-
-      """,
-      extras_require = dict(
-              test = ['zope.testing'],
-              ),
-      )

Copied: zope.sqlalchemy/tags/0.2/setup.py (from rev 87841, zope.sqlalchemy/trunk/setup.py)
===================================================================
--- zope.sqlalchemy/tags/0.2/setup.py	                        (rev 0)
+++ zope.sqlalchemy/tags/0.2/setup.py	2008-06-28 13:49:55 UTC (rev 87842)
@@ -0,0 +1,54 @@
+from setuptools import setup, find_packages
+import sys, os
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+def desc(*texts):
+    return '\n'.join(texts)
+
+SVN_VERSION = "`SVN version <svn://svn.zope.org/repos/main/zope.sqlalchemy/trunk#egg=zope.sqlalchemy-dev>`_\n"
+
+long_description = desc(
+    read('README.txt'),
+    read('src', 'zope', 'sqlalchemy', 'README.txt'),
+    SVN_VERSION,
+    read('CHANGES.txt'),
+    'Download\n********\n',
+    )
+
+setup(name='zope.sqlalchemy',
+      version='0.2', # Remember to update __version__ in __init__.py
+      description="Minimal Zope/SQLAlchemy transaction integration",
+      long_description=long_description,
+      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
+      classifiers=[
+        "Framework :: Zope3",
+        "Programming Language :: Python",
+        "License :: OSI Approved :: Zope Public License",
+        "Topic :: Software Development :: Libraries :: Python Modules",
+        ],
+      keywords='',
+      author='Laurence Rowe',
+      author_email='laurence at lrowe.co.uk',
+      url='http://pypi.python.org/pypi/zope.sqlalchemy',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'':'src'},
+      namespace_packages=['zope'],
+      include_package_data=True,
+      zip_safe=False,
+      install_requires=[
+          # -*- Extra requirements: -*-
+          'setuptools',
+          'SQLAlchemy>=0.4.6',
+          'transaction',
+          'zope.interface',
+      ],
+      entry_points="""
+      # -*- Entry points: -*-
+      """,
+      extras_require = dict(
+              test = ['zope.testing'],
+              ),
+      )

Deleted: zope.sqlalchemy/tags/0.2/src/zope/sqlalchemy/__init__.py
===================================================================
--- zope.sqlalchemy/trunk/src/zope/sqlalchemy/__init__.py	2008-06-28 09:12:21 UTC (rev 87838)
+++ zope.sqlalchemy/tags/0.2/src/zope/sqlalchemy/__init__.py	2008-06-28 13:49:55 UTC (rev 87842)
@@ -1,17 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2008 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
-#
-##############################################################################
-
-__version__ = '0.1'
-
-from datamanager import ZopeTransactionExtension, invalidate

Copied: zope.sqlalchemy/tags/0.2/src/zope/sqlalchemy/__init__.py (from rev 87841, zope.sqlalchemy/trunk/src/zope/sqlalchemy/__init__.py)
===================================================================
--- zope.sqlalchemy/tags/0.2/src/zope/sqlalchemy/__init__.py	                        (rev 0)
+++ zope.sqlalchemy/tags/0.2/src/zope/sqlalchemy/__init__.py	2008-06-28 13:49:55 UTC (rev 87842)
@@ -0,0 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2008 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
+
+__version__ = '0.2'
+
+from datamanager import ZopeTransactionExtension, invalidate



More information about the Checkins mailing list