Commit 27e85c7a authored by Hanno Schlichting's avatar Hanno Schlichting

Use `.rst` file endings.

parent a91f8a82
......@@ -8,9 +8,6 @@ Changelog
- Require ZODB 5.0 or newer.
3.1 - unreleased
----------------
- Use `storage._lock` as a context manager.
- Declare PyPy compatibility.
......
include *.rst
include *.txt
recursive-include src *
......
......@@ -16,11 +16,13 @@
from setuptools import setup, find_packages
long_description = (open("README.txt").read() + "\n" +
open("CHANGES.txt").read())
long_description = (open("README.rst").read() + "\n" +
open("CHANGES.rst").read())
__version__ = '4.0.dev0'
setup(name='tempstorage',
version='4.0.dev0',
version=__version__,
url='http://pypi.python.org/pypi/tempstorage',
license='ZPL 2.1',
description='A RAM-based storage for ZODB',
......
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