Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Nicolas Wavrant
ZODB
Commits
800c6afe
Commit
800c6afe
authored
9 years ago
by
Marius Gedminas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use PEP-426 environment markers
Should fix #36
parent
115158a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
setup.py
setup.py
+6
-2
No files found.
setup.py
View file @
800c6afe
...
...
@@ -157,7 +157,11 @@ setup(name="ZODB",
long_description
=
long_description
,
test_suite
=
"__main__.alltests"
,
# to support "setup.py test"
tests_require
=
tests_require
,
extras_require
=
dict
(
test
=
tests_require
),
extras_require
=
{
'test'
:
tests_require
,
'python_version >= "2.7"'
:
'zodbpickle >= 0.6.0'
,
'platform_python_implementation == "PyPy'
:
'zodbpickle >= 0.6.0'
,
},
install_requires
=
[
'persistent >= 4.1.0'
,
'BTrees >= 4.1.3'
,
...
...
@@ -167,7 +171,7 @@ setup(name="ZODB",
'zc.lockfile'
,
'zdaemon >= 4.0.0a1'
,
'zope.interface'
,
]
+
([
'zodbpickle >= 0.6.0'
]
if
(
PY3
or
PY27
or
PYPY
)
else
[])
,
]
,
zip_safe
=
False
,
entry_points
=
"""
[console_scripts]
...
...
This diff is collapsed.
Click to expand it.
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