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
e2fbd619
Commit
e2fbd619
authored
Dec 29, 2014
by
Aaron Hill
Browse files
Merge pull request #534 from wdahlenburg/master
Updated requirements for pip 6.0+ to include a session
parents
97faa0d3
9b4cb9eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
e2fbd619
#!/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