[Checkins] SVN: zc.freeze/trunk/ A little more cleanup of meta-data.

Zvezdan Petkovic zvezdan at zope.com
Fri Apr 8 15:00:19 EDT 2011


Log message for revision 121352:
  A little more cleanup of meta-data.
  
  

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

-=-
Modified: zc.freeze/trunk/CHANGES.txt
===================================================================
--- zc.freeze/trunk/CHANGES.txt	2011-04-08 17:25:03 UTC (rev 121351)
+++ zc.freeze/trunk/CHANGES.txt	2011-04-08 19:00:18 UTC (rev 121352)
@@ -5,12 +5,14 @@
 1.2 (unreleased)
 ================
 
-* Updated tests to run with ZTK 1.0.
+- Updated tests to run with ZTK 1.0.
 
-* Using Python's ``doctest`` module instead of depreacted
-  ``zope.testing.doctest``.
+- Using Python's `doctest` module instead of the deprecated
+  `zope.testing.doctest`.
 
+- Depend on a newer bug-fix version of zope.locking
 
+
 1.1
 ===
 

Modified: zc.freeze/trunk/README.txt
===================================================================
--- zc.freeze/trunk/README.txt	2011-04-08 17:25:03 UTC (rev 121351)
+++ zc.freeze/trunk/README.txt	2011-04-08 19:00:18 UTC (rev 121352)
@@ -1,2 +1,9 @@
-Pattern for freezing objects.  State is informational--enforcement unspecified.
+*********
+zc.freeze
+*********
+
+The `zc.freeze` package provides a pattern for freezing objects.
+State is informational--enforcement unspecified.
 Some enforcement approaches and helpers are included.
+
+.. See ``src/zc/zc.freeze/README.txt`` for details.

Modified: zc.freeze/trunk/setup.py
===================================================================
--- zc.freeze/trunk/setup.py	2011-04-08 17:25:03 UTC (rev 121351)
+++ zc.freeze/trunk/setup.py	2011-04-08 19:00:18 UTC (rev 121352)
@@ -1,3 +1,5 @@
+"""Pattern for freezing objects"""
+
 import os
 from setuptools import setup, find_packages
 
@@ -7,12 +9,12 @@
 
 
 tests_require = [
-        'transaction',
-        'zope.app.container', # lame, should remove
-        'zope.app.keyreference',
-        'zope.app.testing', # lame, should remove
-        'zope.testing',
-        ],
+    'transaction',
+    'zope.app.container', # lame, should remove
+    'zope.app.keyreference',
+    'zope.app.testing', # lame, should remove
+    'zope.testing',
+    ],
 
 
 setup(
@@ -20,8 +22,14 @@
     version="1.2dev",
     author='Zope Project',
     author_email='zope-dev at zope.org',
-    description=read('README.txt'),
+    description=__doc__,
     long_description='\n\n'.join([
+        read('README.txt'),
+        '.. contents::',
+        '\n'.join([
+            'Detailed Documentation',
+            '**********************',
+            ]),
         read('src', 'zc', 'freeze', 'README.txt'),
         read('CHANGES.txt'),
         ]),
@@ -56,7 +64,7 @@
         'zope.component',
         'zope.event',
         'zope.interface',
-        'zope.locking >= 1.2.1', # optional, actually
+        'zope.locking >= 1.2.1', # optional, actually <= wish? not reality
         ],
     extras_require=dict(
         test=tests_require,



More information about the checkins mailing list