[Checkins] SVN: zc.zkzopeserver/tags/0.3.2/ zc.zkzopeserver 0.3.2 "fred-doesn't-check-the-docs" release

Fred Drake fdrake at gmail.com
Fri Feb 3 16:39:00 UTC 2012


Log message for revision 124301:
  zc.zkzopeserver 0.3.2 "fred-doesn't-check-the-docs" release

Changed:
  A   zc.zkzopeserver/tags/0.3.2/
  D   zc.zkzopeserver/tags/0.3.2/setup.py
  A   zc.zkzopeserver/tags/0.3.2/setup.py

-=-
Deleted: zc.zkzopeserver/tags/0.3.2/setup.py
===================================================================
--- zc.zkzopeserver/trunk/setup.py	2012-02-03 16:14:13 UTC (rev 124298)
+++ zc.zkzopeserver/tags/0.3.2/setup.py	2012-02-03 16:38:59 UTC (rev 124301)
@@ -1,47 +0,0 @@
-##############################################################################
-#
-# Copyright (c) Zope Foundation 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.
-#
-##############################################################################
-name, version = 'zc.zkzopeserver', '0'
-
-install_requires = ['setuptools', 'zc.zk', 'zope.server']
-extras_require = dict(
-    test=['zope.testing', 'zc.zk [static,test]', 'zc.monitor',
-          'zc.zservertracelog', 'mock', 'netifaces']
-    )
-
-entry_points = """
-[paste.server_runner]
-main = zc.zkzopeserver:run
-"""
-
-from setuptools import setup
-
-setup(
-    author = 'Jim Fulton',
-    author_email = 'jim at zope.com',
-    license = 'ZPL 2.1',
-
-    name = name, version = version,
-    long_description=open('README.txt').read(),
-    description = open('README.txt').read().strip().split('\n')[1],
-    packages = [name.split('.')[0], name],
-    namespace_packages = [name.split('.')[0]],
-    package_dir = {'': 'src'},
-    install_requires = install_requires,
-    zip_safe = False,
-    entry_points=entry_points,
-    package_data = {name: ['*.txt', '*.test', '*.html']},
-    extras_require = extras_require,
-    tests_require = extras_require['test'],
-    test_suite = name+'.tests.test_suite',
-    )

Copied: zc.zkzopeserver/tags/0.3.2/setup.py (from rev 124300, zc.zkzopeserver/trunk/setup.py)
===================================================================
--- zc.zkzopeserver/tags/0.3.2/setup.py	                        (rev 0)
+++ zc.zkzopeserver/tags/0.3.2/setup.py	2012-02-03 16:38:59 UTC (rev 124301)
@@ -0,0 +1,50 @@
+##############################################################################
+#
+# Copyright (c) Zope Foundation 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.
+#
+##############################################################################
+name, version = 'zc.zkzopeserver', '0.3.2'
+
+install_requires = ['setuptools', 'zc.zk', 'zope.server']
+extras_require = dict(
+    test=['zope.testing', 'zc.zk [static,test]', 'zc.monitor',
+          'zc.zservertracelog', 'mock', 'netifaces']
+    )
+
+entry_points = """
+[paste.server_runner]
+main = zc.zkzopeserver:run
+"""
+
+from setuptools import setup
+
+def read(path):
+    return open(path).read().strip()
+
+setup(
+    author = 'Jim Fulton',
+    author_email = 'jim at zope.com',
+    license = 'ZPL 2.1',
+
+    name = name, version = version,
+    long_description=read('src/zc/zkzopeserver/README.txt'),
+    description = read('src/zc/zkzopeserver/README.txt').split('\n')[1],
+    packages = [name.split('.')[0], name],
+    namespace_packages = [name.split('.')[0]],
+    package_dir = {'': 'src'},
+    install_requires = install_requires,
+    zip_safe = False,
+    entry_points=entry_points,
+    package_data = {name: ['*.txt', '*.test', '*.html']},
+    extras_require = extras_require,
+    tests_require = extras_require['test'],
+    test_suite = name+'.tests.test_suite',
+    )



More information about the checkins mailing list