[Checkins] SVN: zope.sqlalchemy/tags/0.1/ tagging 0.1

Laurence Rowe l at lrowe.co.uk
Thu May 15 08:49:51 EDT 2008


Log message for revision 86771:
  tagging 0.1

Changed:
  A   zope.sqlalchemy/tags/0.1/
  D   zope.sqlalchemy/tags/0.1/setup.cfg
  D   zope.sqlalchemy/tags/0.1/setup.py
  A   zope.sqlalchemy/tags/0.1/setup.py
  D   zope.sqlalchemy/tags/0.1/src/zope/sqlalchemy/__init__.py
  A   zope.sqlalchemy/tags/0.1/src/zope/sqlalchemy/__init__.py

-=-
Copied: zope.sqlalchemy/tags/0.1 (from rev 86516, zope.sqlalchemy/trunk)

Deleted: zope.sqlalchemy/tags/0.1/setup.cfg
===================================================================
--- zope.sqlalchemy/trunk/setup.cfg	2008-05-06 15:47:07 UTC (rev 86516)
+++ zope.sqlalchemy/tags/0.1/setup.cfg	2008-05-15 12:49:51 UTC (rev 86771)
@@ -1,3 +0,0 @@
-[egg_info]
-tag_build = dev
-tag_svn_revision = true

Deleted: zope.sqlalchemy/tags/0.1/setup.py
===================================================================
--- zope.sqlalchemy/trunk/setup.py	2008-05-06 15:47:07 UTC (rev 86516)
+++ zope.sqlalchemy/tags/0.1/setup.py	2008-05-15 12:49:51 UTC (rev 86771)
@@ -1,50 +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()
-
-version = '0.1'
-
-long_description = read('src', 'zope', 'sqlalchemy', 'README.txt') + """
-
-SVN version:
-<svn://svn.zope.org/repos/main/zope.sqlalchemy/trunk#egg=zope.sqlalchemy-dev>
-
-"""
-
-setup(name='zope.sqlalchemy',
-      version=version,
-      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://svn.zope.org/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.dev-r4655,==dev',
-          'transaction',
-          'zope.interface',
-      ],
-      entry_points="""
-      # -*- Entry points: -*-
-      """,
-      extras_require = dict(
-              test = ['zope.testing'],
-              ),
-      )

Copied: zope.sqlalchemy/tags/0.1/setup.py (from rev 86770, zope.sqlalchemy/trunk/setup.py)
===================================================================
--- zope.sqlalchemy/tags/0.1/setup.py	                        (rev 0)
+++ zope.sqlalchemy/tags/0.1/setup.py	2008-05-15 12:49:51 UTC (rev 86771)
@@ -0,0 +1,49 @@
+from setuptools import setup, find_packages
+import sys, os
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+version = '0.1'
+
+long_description = read('src', 'zope', 'sqlalchemy', 'README.txt') + """
+
+`SVN version <svn://svn.zope.org/repos/main/zope.sqlalchemy/trunk#egg=zope.sqlalchemy-dev>`_.
+
+"""
+
+setup(name='zope.sqlalchemy',
+      version=version,
+      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.1/src/zope/sqlalchemy/__init__.py
===================================================================
--- zope.sqlalchemy/trunk/src/zope/sqlalchemy/__init__.py	2008-05-06 15:47:07 UTC (rev 86516)
+++ zope.sqlalchemy/tags/0.1/src/zope/sqlalchemy/__init__.py	2008-05-15 12:49:51 UTC (rev 86771)
@@ -1,15 +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
-#
-##############################################################################
-
-from datamanager import ZopeTransactionExtension, invalidate

Copied: zope.sqlalchemy/tags/0.1/src/zope/sqlalchemy/__init__.py (from rev 86770, zope.sqlalchemy/trunk/src/zope/sqlalchemy/__init__.py)
===================================================================
--- zope.sqlalchemy/tags/0.1/src/zope/sqlalchemy/__init__.py	                        (rev 0)
+++ zope.sqlalchemy/tags/0.1/src/zope/sqlalchemy/__init__.py	2008-05-15 12:49:51 UTC (rev 86771)
@@ -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.1'
+
+from datamanager import ZopeTransactionExtension, invalidate



More information about the Checkins mailing list