Skip to content

Commit

Permalink
Improve package metadata for release. Added dev marker.
Browse files Browse the repository at this point in the history
  • Loading branch information
philikon committed Jan 6, 2008
1 parent cf67116 commit 275ea57
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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@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,
Expand Down

0 comments on commit 275ea57

Please sign in to comment.