[Checkins] SVN: tempstorage/trunk/setup.py Improve package metadata for release. Added dev marker.

Philipp von Weitershausen philikon at philikon.de
Sun Jan 6 15:03:46 EST 2008


Log message for revision 82707:
  Improve package metadata for release. Added dev marker.

Changed:
  U   tempstorage/trunk/setup.py

-=-
Modified: tempstorage/trunk/setup.py
===================================================================
--- tempstorage/trunk/setup.py	2008-01-06 19:56:39 UTC (rev 82706)
+++ tempstorage/trunk/setup.py	2008-01-06 20:03:45 UTC (rev 82707)
@@ -17,16 +17,20 @@
 from setuptools import setup, find_packages, Extension
 
 setup(name='tempstorage',
-      version = '2.11.0a1',
-      url='http://svn.zope.org/tempstorage',
+      version = '2.11.0dev',
+      url='http://pypi.python.org/pypi/tempstorage',
       license='ZPL 2.1',
-      description='',
+      description='A RAM-based storage for ZODB',
       author='Zope Corporation and Contributors',
       author_email='zope-dev at zope.org',
-      long_description='',
+      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.""",
       
-	  packages=find_packages('src'),
-	  package_dir={'': 'src'},
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
 
       install_requires=['ZODB3'],
       include_package_data=True,



More information about the Checkins mailing list