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
690bda97
Commit
690bda97
authored
Aug 16, 2013
by
Aaron Hill
Browse files
Added dependencies
parent
e05eae33
Changes
2
Hide whitespace changes
Inline
Side-by-side
requirements.txt
0 → 100644
View file @
690bda97
requests
==1.2.3
requests_oauth
==0.4.1
setup.py
View file @
690bda97
...
...
@@ -2,6 +2,10 @@
#from distutils.core import setup
from
setuptools
import
setup
,
find_packages
from
tweepy
import
__version__
from
pip.req
import
parse_requirements
install_reqs
=
parse_requirements
(
'requirements.txt'
)
reqs
=
[
str
(
req
.
req
)
for
req
in
install_reqs
]
setup
(
name
=
"tweepy"
,
version
=
__version__
,
...
...
@@ -11,5 +15,6 @@ setup(name="tweepy",
author_email
=
"tweepy@googlegroups.com"
,
url
=
"http://github.com/tweepy/tweepy"
,
packages
=
find_packages
(
exclude
=
[
'tests'
]),
intall_requires
=
reqs
,
keywords
=
"twitter library"
,
zip_safe
=
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