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

Use `.rst` file endings.

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