[Checkins] SVN: zc.extrinsicreference/trunk/ More packaging infrastructure.

Zvezdan Petkovic zvezdan at zope.com
Thu Aug 27 16:09:01 EDT 2009


Log message for revision 103315:
  More packaging infrastructure.
  
  

Changed:
  A   zc.extrinsicreference/trunk/CHANGES.txt
  A   zc.extrinsicreference/trunk/README.txt
  U   zc.extrinsicreference/trunk/setup.py

-=-
Added: zc.extrinsicreference/trunk/CHANGES.txt
===================================================================
--- zc.extrinsicreference/trunk/CHANGES.txt	                        (rev 0)
+++ zc.extrinsicreference/trunk/CHANGES.txt	2009-08-27 20:09:01 UTC (rev 103315)
@@ -0,0 +1,23 @@
+=======
+CHANGES
+=======
+
+0.3.0 (2009-08-27)
+------------------
+
+- Fix errors introduced in 0.2.0 refactoring:
+
+  1. Stop referring to extrinsicreference module from ZCML.
+     The code is now in ``__init__.py``.
+
+  2. Revert `registerShortcut` and `unregisterShortcut` changes.
+     These two functions are handlers in ``track_shortcuts.zcml``.
+
+  3. Add more package infrastructure, such as this file.
+
+
+0.2.0 (2009-08-26)
+------------------
+
+- Refactored an existing stable code.
+- Initial release as an egg.


Property changes on: zc.extrinsicreference/trunk/CHANGES.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: zc.extrinsicreference/trunk/README.txt
===================================================================
--- zc.extrinsicreference/trunk/README.txt	                        (rev 0)
+++ zc.extrinsicreference/trunk/README.txt	2009-08-27 20:09:01 UTC (rev 103315)
@@ -0,0 +1,5 @@
+========================
+Extrinsic Key References
+========================
+
+See ``src/zc/extrinsicreference/README.txt`` for details.


Property changes on: zc.extrinsicreference/trunk/README.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Modified: zc.extrinsicreference/trunk/setup.py
===================================================================
--- zc.extrinsicreference/trunk/setup.py	2009-08-27 19:45:16 UTC (rev 103314)
+++ zc.extrinsicreference/trunk/setup.py	2009-08-27 20:09:01 UTC (rev 103315)
@@ -1,17 +1,60 @@
+##############################################################################
+#
+# Copyright (c) 2004 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 zc.extrinsicreference package
+"""
+
+import os
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(
-    name="zc.extrinsicreference",
-    version = "0.3.0dev",
-    license = 'ZPL 2.1',
-    description = '',
-    author = 'Zope Corporation and Contributors',
-    author_email = 'zope-dev at zope.org',
+    name='zc.extrinsicreference',
+    version='0.3.0dev',
+    author='Zope Corporation and Contributors',
+    author_email='zope-dev at zope.org',
+    description='Extrinsic reference registries',
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        'Detailed Documentation\n' +
+        '----------------------'
+        + '\n\n' +
+        read('src', 'zc', 'extrinsicreference', 'README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    license='ZPL 2.1',
+    keywords='extrinsic key reference zope zope3',
+    classifiers=[
+        'Development Status :: 5 - Production/Stable',
+        'Environment :: Web Environment',
+        'Framework :: Zope3',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Programming Language :: Python',
+        'Topic :: Internet :: WWW/HTTP',
+        'Topic :: Software Development :: Libraries :: Python Modules',
+        ],
+    url='http://pypi.python.org/pypi/zc.extrinsicreference',
     packages=find_packages('src'),
     package_dir={'':'src'},
     namespace_packages=['zc'],
-    include_package_data=True,
-    install_requires = [
+    install_requires=[
         'ZODB3',
         'setuptools',
         'zc.shortcut',
@@ -20,5 +63,6 @@
         'zope.interface',
         'zope.testing',
         ],
-    zip_safe = False
+    include_package_data=True,
+    zip_safe=False,
     )



More information about the checkins mailing list