[Checkins] SVN: zc.relationship/trunk/ prepare for 2.0 release

Gary Poster gary at zope.com
Wed Apr 23 21:36:15 EDT 2008


Log message for revision 85680:
  prepare for 2.0 release

Changed:
  _U  zc.relationship/trunk/
  U   zc.relationship/trunk/README.txt
  U   zc.relationship/trunk/setup.py
  U   zc.relationship/trunk/src/zc/relationship/README.txt
  U   zc.relationship/trunk/src/zc/relationship/index.py

-=-

Property changes on: zc.relationship/trunk
___________________________________________________________________
Name: svn:ignore
   - develop-eggs
bin
parts
.installed.cfg
build
dist
eggs


   + develop-eggs
bin
parts
.installed.cfg
build
dist
eggs
TEST_THIS_REST_BEFORE_REGISTERING.txt


Modified: zc.relationship/trunk/README.txt
===================================================================
--- zc.relationship/trunk/README.txt	2008-04-24 01:17:45 UTC (rev 85679)
+++ zc.relationship/trunk/README.txt	2008-04-24 01:36:15 UTC (rev 85680)
@@ -1,2 +1 @@
-Low-level ZODB relationship index: supports intransitive and transitive n-ary
-relationships.  Example usage of "relationship containers".
+Zope 3 relationship index.  Precursor to zc.relation.

Modified: zc.relationship/trunk/setup.py
===================================================================
--- zc.relationship/trunk/setup.py	2008-04-24 01:17:45 UTC (rev 85679)
+++ zc.relationship/trunk/setup.py	2008-04-24 01:36:15 UTC (rev 85680)
@@ -1,8 +1,29 @@
+##############################################################################
+#
+# Copyright (c) 2006-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 setuptools import setup, find_packages
 
+long_description=(
+    open('src/zc/relationship/README.txt').read() + '\n\n' +
+    open("src/zc/relationship/CHANGES.txt").read())
+
+f = open('TEST_THIS_REST_BEFORE_REGISTERING.txt', 'w')
+f.write(long_description)
+f.close()
+
 setup(
     name="zc.relationship",
-    version="2.0a1",
+    version="2.0",
     packages=find_packages('src'),
     include_package_data=True,
     package_dir= {'':'src'},
@@ -10,13 +31,10 @@
     namespace_packages=['zc'],
 
     zip_safe=False,
-    author='Zope Project',
-    author_email='zope3-dev at zope.org',
+    author='Gary Poster',
+    author_email='gary at zope.com',
     description=open("README.txt").read(),
-    long_description=(
-        open('src/zc/relationship/CHANGES.txt').read() +
-        '\n========\nOverview\n========\n\n' +
-        open("src/zc/relationship/README.txt").read()),
+    long_description=long_description,
     license='ZPL 2.1',
     keywords="zope zope3",
     install_requires=[
@@ -30,8 +48,8 @@
         'zope.index',
         'zc.relation',
         
-        'zope.app.testing', # TODO remove this
-        'zope.app.component', # TODO remove this
+        'zope.app.testing',
+        'zope.app.component',
         'zope.testing',
         'setuptools',
         ],

Modified: zc.relationship/trunk/src/zc/relationship/README.txt
===================================================================
--- zc.relationship/trunk/src/zc/relationship/README.txt	2008-04-24 01:17:45 UTC (rev 85679)
+++ zc.relationship/trunk/src/zc/relationship/README.txt	2008-04-24 01:36:15 UTC (rev 85680)
@@ -1,3 +1,7 @@
+~~~~~~~~~~~~~~~
+zc.relationship
+~~~~~~~~~~~~~~~
+
 The zc.relationship package currently contains two main types of
 components: a relationship index, and some relationship containers. 
 Both are designed to be used within the ZODB, although the index is

Modified: zc.relationship/trunk/src/zc/relationship/index.py
===================================================================
--- zc.relationship/trunk/src/zc/relationship/index.py	2008-04-24 01:17:45 UTC (rev 85679)
+++ zc.relationship/trunk/src/zc/relationship/index.py	2008-04-24 01:36:15 UTC (rev 85680)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2004-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.
+#
+##############################################################################
 import re
 import types
 



More information about the Checkins mailing list