[Checkins] SVN: zope.traversing/branches/3.4/ Improve package metadata

Philipp von Weitershausen philikon at philikon.de
Sat Sep 29 07:16:38 EDT 2007


Log message for revision 80372:
  Improve package metadata
  
  Prepare release
  

Changed:
  A   zope.traversing/branches/3.4/CHANGES.txt
  U   zope.traversing/branches/3.4/README.txt
  U   zope.traversing/branches/3.4/setup.py

-=-
Added: zope.traversing/branches/3.4/CHANGES.txt
===================================================================
--- zope.traversing/branches/3.4/CHANGES.txt	                        (rev 0)
+++ zope.traversing/branches/3.4/CHANGES.txt	2007-09-29 11:16:38 UTC (rev 80372)
@@ -0,0 +1,13 @@
+Changes
+=======
+
+3.4.0 (2007-09-29)
+------------------
+
+No further changes since 3.4.0a1.
+
+3.4.0a1 (2007-04-22)
+--------------------
+
+Initial release as a separate project, corresponds to zope.traversing
+from Zope 3.4.0a1


Property changes on: zope.traversing/branches/3.4/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.traversing/branches/3.4/README.txt
===================================================================
--- zope.traversing/branches/3.4/README.txt	2007-09-29 11:10:24 UTC (rev 80371)
+++ zope.traversing/branches/3.4/README.txt	2007-09-29 11:16:38 UTC (rev 80372)
@@ -1,7 +1,4 @@
-zope.traversing Package Readme
-==============================
-
-Overview
---------
-
-Module for traversing the object tree.
+The ``zope.traversing`` package provides adapteres for resolving
+object paths by traversing an object hierarchy.  This also includes
+support for traversal namespaces (e.g. ``++view++``, ``++skin++``,
+etc.) as well as computing URLs via the ``@@absolute_url`` view.

Modified: zope.traversing/branches/3.4/setup.py
===================================================================
--- zope.traversing/branches/3.4/setup.py	2007-09-29 11:10:24 UTC (rev 80371)
+++ zope.traversing/branches/3.4/setup.py	2007-09-29 11:16:38 UTC (rev 80372)
@@ -15,23 +15,23 @@
 
 $Id$
 """
-
-import os
 from setuptools import setup, find_packages
 
+long_description = (open('README.txt').read() +
+                    '\n\n' +
+                    open('CHANGES.txt').read())
 
 setup(name='zope.traversing',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.traversing',
+      version = '3.4.0',
+      url='http://pypi.python.org/pypi/zope.traversing',
       license='ZPL 2.1',
-      description='Zope traversing',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description="Module for traversing the object tree.",
+      description="Resolving paths in the object hierarchy",
+      long_description=long_description,
 
       packages=find_packages('src'),
       package_dir = {'': 'src'},
-
       namespace_packages=['zope',],
       extras_require = dict(test=['zope.app.testing',
                                   'zope.app.securitypolicy',
@@ -48,6 +48,5 @@
                         'zope.security',
                         ],
       include_package_data = True,
-
       zip_safe = False,
       )



More information about the Checkins mailing list