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
745d67ec
Commit
745d67ec
authored
Aug 03, 2009
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added readme and changelog
parent
11d86e05
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
10 deletions
+27
-10
CHANGES.txt
CHANGES.txt
+12
-0
README.txt
README.txt
+7
-0
setup.py
setup.py
+8
-10
No files found.
CHANGES.txt
0 → 100644
View file @
745d67ec
Changelog
=========
2.11.2 - unreleased
-------------------
- Added change log an readme.
2.11.1 - 2008-08-05
-------------------
- Initial release as a stand-alone package.
README.txt
0 → 100644
View file @
745d67ec
Overview
========
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.
setup.py
View file @
745d67ec
...
...
@@ -11,24 +11,22 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Setup for the
Acquisition egg
package
"""Setup for the
tempstorage
package
"""
import
os
from
setuptools
import
setup
,
find_packages
,
Extension
from
setuptools
import
setup
,
find_packages
long_description
=
file
(
"README.txt"
).
read
()
+
"
\
n
"
+
\
file
(
"CHANGES.txt"
).
read
()
setup
(
name
=
'tempstorage'
,
version
=
'2.11.
0
dev'
,
version
=
'2.11.
2
dev'
,
url
=
'http://pypi.python.org/pypi/tempstorage'
,
license
=
'ZPL 2.1'
,
description
=
'A RAM-based storage for ZODB'
,
author
=
'Zope Corporation and Contributors'
,
author_email
=
'zope-dev@zope.org'
,
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."""
,
long_description
=
long_description
,
packages
=
find_packages
(
'src'
),
package_dir
=
{
''
:
'src'
},
...
...
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