Improve package metadata for release. Added dev marker.

parent cf671168
...@@ -17,16 +17,20 @@ import os ...@@ -17,16 +17,20 @@ import os
from setuptools import setup, find_packages, Extension from setuptools import setup, find_packages, Extension
setup(name='tempstorage', setup(name='tempstorage',
version = '2.11.0a1', version = '2.11.0dev',
url='http://svn.zope.org/tempstorage', url='http://pypi.python.org/pypi/tempstorage',
license='ZPL 2.1', license='ZPL 2.1',
description='', description='A RAM-based storage for ZODB',
author='Zope Corporation and Contributors', author='Zope Corporation and Contributors',
author_email='zope-dev@zope.org', author_email='zope-dev@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'), packages=find_packages('src'),
package_dir={'': 'src'}, package_dir={'': 'src'},
install_requires=['ZODB3'], install_requires=['ZODB3'],
include_package_data=True, include_package_data=True,
......
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