[Checkins] SVN: tempstorage/trunk/ Added readme and changelog

Hanno Schlichting hannosch at hannosch.eu
Mon Aug 3 13:29:40 EDT 2009


Log message for revision 102458:
  Added readme and changelog
  

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

-=-
Added: tempstorage/trunk/CHANGES.txt
===================================================================
--- tempstorage/trunk/CHANGES.txt	                        (rev 0)
+++ tempstorage/trunk/CHANGES.txt	2009-08-03 17:29:40 UTC (rev 102458)
@@ -0,0 +1,12 @@
+Changelog
+=========
+
+2.11.2 - unreleased
+-------------------
+
+- Added change log an readme.
+
+2.11.1 - 2008-08-05
+-------------------
+
+- Initial release as a stand-alone package.


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

Added: tempstorage/trunk/README.txt
===================================================================
--- tempstorage/trunk/README.txt	                        (rev 0)
+++ tempstorage/trunk/README.txt	2009-08-03 17:29:40 UTC (rev 102458)
@@ -0,0 +1,7 @@
+Overview
+========
+
+A storage implementation which uses RAM to persist objects, much like
+MappingStorage. Unlike MappingStorage, it needs not be packed to get rid of
+non-cyclic garbage and it does rudimentary conflict resolution. This is a
+ripoff of Jim's Packless bsddb3 storage.


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

Modified: tempstorage/trunk/setup.py
===================================================================
--- tempstorage/trunk/setup.py	2009-08-03 16:34:22 UTC (rev 102457)
+++ tempstorage/trunk/setup.py	2009-08-03 17:29:40 UTC (rev 102458)
@@ -11,24 +11,22 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Setup for the Acquisition egg package
+"""Setup for the tempstorage package
 """
-import os
-from setuptools import setup, find_packages, Extension
 
+from setuptools import setup, find_packages
+
+long_description = file("README.txt").read() + "\n" + \
+                   file("CHANGES.txt").read()
+
 setup(name='tempstorage',
-      version = '2.11.0dev',
+      version = '2.11.2dev',
       url='http://pypi.python.org/pypi/tempstorage',
       license='ZPL 2.1',
       description='A RAM-based storage for ZODB',
       author='Zope Corporation and Contributors',
       author_email='zope-dev at zope.org',
-      long_description="""\
-A storage implementation which uses RAM to persist objects, much like
-MappingStorage.  Unlike MappingStorage, it needs not be packed to get rid of
-non-cyclic garbage and it does rudimentary conflict resolution.  This is a
-ripoff of Jim's Packless bsddb3 storage.""",
-      
+      long_description=long_description,
       packages=find_packages('src'),
       package_dir={'': 'src'},
 



More information about the Checkins mailing list