Commit 745d67ec authored by Hanno Schlichting's avatar Hanno Schlichting

Added readme and changelog

parent 11d86e05
Changelog
=========
2.11.2 - unreleased
-------------------
- Added change log an readme.
2.11.1 - 2008-08-05
-------------------
- Initial release as a stand-alone package.
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.
......@@ -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@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'},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment