Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
tweepy
Commits
9b4cb9eb
Commit
9b4cb9eb
authored
Dec 29, 2014
by
root
Browse files
Updated requirements for pip 6.0+ to include a session
parent
97faa0d3
Changes
1
Show whitespace changes
Inline
Side-by-side
setup.py
View file @
9b4cb9eb
#!/usr/bin/env python
#from distutils.core import setup
import
re
import
re
,
uuid
from
setuptools
import
setup
,
find_packages
from
pip.req
import
parse_requirements
...
...
@@ -14,7 +14,7 @@ if mo:
else
:
raise
RuntimeError
(
"Unable to find version string in %s."
%
(
VERSIONFILE
,))
install_reqs
=
parse_requirements
(
'requirements.txt'
)
install_reqs
=
parse_requirements
(
'requirements.txt'
,
session
=
uuid
.
uuid1
()
)
reqs
=
[
str
(
req
.
req
)
for
req
in
install_reqs
]
setup
(
name
=
"tweepy"
,
...
...
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