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
275ea579
Commit
275ea579
authored
Jan 06, 2008
by
Philipp von Weitershausen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve package metadata for release. Added dev marker.
parent
cf671168
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
setup.py
setup.py
+10
-6
No files found.
setup.py
View file @
275ea579
...
...
@@ -17,16 +17,20 @@ import os
from
setuptools
import
setup
,
find_packages
,
Extension
setup
(
name
=
'tempstorage'
,
version
=
'2.11.0
a1
'
,
url
=
'http://
svn.zope.org
/tempstorage'
,
version
=
'2.11.0
dev
'
,
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
,
...
...
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