[Checkins] SVN: z3c.etree/trunk/ Bump version, add long description and add classifiers.

Michael Kerrin michael.kerrin at openapp.ie
Thu Feb 7 14:01:49 EST 2008


Log message for revision 83647:
  Bump version, add long description and add classifiers.
  

Changed:
  U   z3c.etree/trunk/CHANGES.txt
  U   z3c.etree/trunk/setup.py

-=-
Modified: z3c.etree/trunk/CHANGES.txt
===================================================================
--- z3c.etree/trunk/CHANGES.txt	2008-02-07 18:56:27 UTC (rev 83646)
+++ z3c.etree/trunk/CHANGES.txt	2008-02-07 19:01:49 UTC (rev 83647)
@@ -2,6 +2,11 @@
 Changes in z3c.etree
 ====================
 
+0.9.2
+=====
+
+- Allow the use of NORMALIZE_WHITESPACE with tag contents.
+
 0.9.1
 =====
 

Modified: z3c.etree/trunk/setup.py
===================================================================
--- z3c.etree/trunk/setup.py	2008-02-07 18:56:27 UTC (rev 83646)
+++ z3c.etree/trunk/setup.py	2008-02-07 19:01:49 UTC (rev 83647)
@@ -1,13 +1,24 @@
 from setuptools import setup, find_packages
 
 setup(name = "z3c.etree",
-      version = "0.9.1",
+      version = "0.9.2",
       author = "Michael Kerrin",
       author_email = "michael.kerrin at openapp.ie",
       url = "http://svn.zope.org/z3c.etree",
-      description = "Abstracts out the the implementation of elementtree " \
-                    "behind the zope component architecture",
+      description = "Abstracts out the implementation of elementtree " \
+                    "behind the zope component architecture. And provides " \
+                    "helper functions for testing XML output in tests.",
+      long_description = (
+          open("src/z3c/etree/README.txt").read() +
+          "\n\n" +
+          open("CHANGES.txt").read()),
       license = "ZPL",
+      classifiers = ["Topic :: Software Development :: Testing",
+                     "Intended Audience :: Developers",
+                     "License :: OSI Approved :: Zope Public License",
+                     "Programming Language :: Python",
+                     "Framework :: Zope3",
+                     ],
 
       packages = find_packages("src"),
       package_dir = {"": "src"},



More information about the Checkins mailing list