Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
tempstorage
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
tempstorage
Commits
27e85c7a
Commit
27e85c7a
authored
Mar 09, 2017
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use `.rst` file endings.
parent
a91f8a82
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
CHANGES.rst
CHANGES.rst
+0
-3
MANIFEST.in
MANIFEST.in
+1
-0
README.rst
README.rst
+0
-0
setup.py
setup.py
+5
-3
No files found.
CHANGES.
tx
t
→
CHANGES.
rs
t
View file @
27e85c7a
...
...
@@ -8,9 +8,6 @@ Changelog
- Require ZODB 5.0 or newer.
3.1 - unreleased
----------------
- Use `storage._lock` as a context manager.
- Declare PyPy compatibility.
...
...
MANIFEST.in
View file @
27e85c7a
include *.rst
include *.txt
recursive-include src *
...
...
README.
tx
t
→
README.
rs
t
View file @
27e85c7a
File moved
setup.py
View file @
27e85c7a
...
...
@@ -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'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment