[Checkins] SVN: z3ext.ownership/tags/1.0.1/ egg 1.0.1

Nikolay Kim fafhrd at datacom.kz
Mon May 19 05:15:45 EDT 2008


Log message for revision 86837:
  egg 1.0.1

Changed:
  A   z3ext.ownership/tags/1.0.1/
  D   z3ext.ownership/tags/1.0.1/CHANGES.txt
  A   z3ext.ownership/tags/1.0.1/CHANGES.txt
  D   z3ext.ownership/tags/1.0.1/setup.py
  A   z3ext.ownership/tags/1.0.1/setup.py

-=-
Copied: z3ext.ownership/tags/1.0.1 (from rev 86823, z3ext.ownership/trunk)

Deleted: z3ext.ownership/tags/1.0.1/CHANGES.txt
===================================================================
--- z3ext.ownership/trunk/CHANGES.txt	2008-05-18 14:08:05 UTC (rev 86823)
+++ z3ext.ownership/tags/1.0.1/CHANGES.txt	2008-05-19 09:15:44 UTC (rev 86837)
@@ -1,20 +0,0 @@
-=======
-CHANGES
-=======
-
-1.0.0 (2008-03-21)
-------------------
-
-- Moved to svn.zope.org
-
-
-0.99 (2008-03-19)
------------------
-
-- Code cleanup
-
-
-0.9.0 (2008-02-01)
-------------------
-
-- Initial release

Copied: z3ext.ownership/tags/1.0.1/CHANGES.txt (from rev 86836, z3ext.ownership/trunk/CHANGES.txt)
===================================================================
--- z3ext.ownership/tags/1.0.1/CHANGES.txt	                        (rev 0)
+++ z3ext.ownership/tags/1.0.1/CHANGES.txt	2008-05-19 09:15:44 UTC (rev 86837)
@@ -0,0 +1,26 @@
+=======
+CHANGES
+=======
+
+1.0.1 (2008-05-19)
+------------------
+
+- Replace 'autoinclude' with 'includeDependendcies'
+
+
+1.0.0 (2008-03-21)
+------------------
+
+- Moved to svn.zope.org
+
+
+0.99 (2008-03-19)
+-----------------
+
+- Code cleanup
+
+
+0.9.0 (2008-02-01)
+------------------
+
+- Initial release

Deleted: z3ext.ownership/tags/1.0.1/setup.py
===================================================================
--- z3ext.ownership/trunk/setup.py	2008-05-18 14:08:05 UTC (rev 86823)
+++ z3ext.ownership/tags/1.0.1/setup.py	2008-05-19 09:15:44 UTC (rev 86837)
@@ -1,71 +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.
-#
-##############################################################################
-"""Setup for z3ext.ownership package
-
-$Id$
-"""
-import sys, os
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-version='1.1.0dev'
-
-
-setup(name = 'z3ext.ownership',
-      version = version,
-      author = 'Nikolay Kim',
-      author_email = 'fafhrd91 at gmail.com',
-      description = "Content ownership.",
-      long_description = (
-        'Detailed Documentation\n' +
-        '======================\n'
-        + '\n\n' +
-        read('src', 'z3ext', 'ownership', 'README.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
-        ),
-      classifiers=[
-        'Development Status :: 5 - Production/Stable',
-        'Environment :: Web Environment',
-        'Intended Audience :: Developers',
-        'License :: OSI Approved :: Zope Public License',
-        'Programming Language :: Python',
-        'Natural Language :: English',
-        'Operating System :: OS Independent',
-        'Topic :: Internet :: WWW/HTTP',
-        'Framework :: Zope3'],
-      url='http://z3ext.net/',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'':'src'},
-      namespace_packages=['z3ext'],
-      install_requires = ['setuptools',
-                          'rwproperty',
-                          'zope.component',
-                          'zope.interface',
-                          'zope.security',
-                          'zope.annotation',
-			  'zope.lifecycleevent',
-			  'zope.app.security',
-			  'z3c.autoinclude',
-			  'z3ext.security',
-                          ],
-      extras_require = dict(test=['zope.app.testing',
-                                  'zope.testing',
-                                  ]),
-      include_package_data = True,
-      zip_safe = False
-      )

Copied: z3ext.ownership/tags/1.0.1/setup.py (from rev 86836, z3ext.ownership/trunk/setup.py)
===================================================================
--- z3ext.ownership/tags/1.0.1/setup.py	                        (rev 0)
+++ z3ext.ownership/tags/1.0.1/setup.py	2008-05-19 09:15:44 UTC (rev 86837)
@@ -0,0 +1,71 @@
+##############################################################################
+#
+# 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.
+#
+##############################################################################
+"""Setup for z3ext.ownership package
+
+$Id$
+"""
+import sys, os
+from setuptools import setup, find_packages
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+version='1.0.1'
+
+
+setup(name = 'z3ext.ownership',
+      version = version,
+      author = 'Nikolay Kim',
+      author_email = 'fafhrd91 at gmail.com',
+      description = "Content ownership.",
+      long_description = (
+        'Detailed Documentation\n' +
+        '======================\n'
+        + '\n\n' +
+        read('src', 'z3ext', 'ownership', 'README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+      classifiers=[
+        'Development Status :: 5 - Production/Stable',
+        'Environment :: Web Environment',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Topic :: Internet :: WWW/HTTP',
+        'Framework :: Zope3'],
+      url='http://z3ext.net/',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'':'src'},
+      namespace_packages=['z3ext'],
+      install_requires = ['setuptools',
+                          'rwproperty',
+                          'zope.component',
+                          'zope.interface',
+                          'zope.security',
+                          'zope.annotation',
+			  'zope.lifecycleevent',
+			  'zope.app.security',
+			  'z3c.autoinclude',
+			  'z3ext.security',
+                          ],
+      extras_require = dict(test=['zope.app.testing',
+                                  'zope.testing',
+                                  ]),
+      include_package_data = True,
+      zip_safe = False
+      )



More information about the Checkins mailing list