File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
- requests >= 2.11.1
2
- requests_oauthlib >= 0.7.0
3
- six >= 1.10.0
4
- PySocks >= 1.5.7
1
+ --index-url https://pypi.python.org/simple/
2
+
3
+ -e .
Original file line number Diff line number Diff line change 2
2
#from distutils.core import setup
3
3
import re , uuid
4
4
from setuptools import setup , find_packages
5
- from pip .req import parse_requirements
6
5
7
6
VERSIONFILE = "tweepy/__init__.py"
8
7
ver_file = open (VERSIONFILE , "rt" ).read ()
14
13
else :
15
14
raise RuntimeError ("Unable to find version string in %s." % (VERSIONFILE ,))
16
15
17
- install_reqs = parse_requirements ('requirements.txt' , session = uuid .uuid1 ())
18
- reqs = [str (req .req ) for req in install_reqs ]
19
-
20
16
setup (name = "tweepy" ,
21
17
version = version ,
22
18
description = "Twitter library for python" ,
25
21
author_email = "tweepy@googlegroups.com" ,
26
22
url = "http://github.com/tweepy/tweepy" ,
27
23
packages = find_packages (exclude = ['tests' ]),
28
- install_requires = reqs ,
24
+ install_requires = [
25
+ "requests>=2.11.1" ,
26
+ "requests_oauthlib>=0.7.0" ,
27
+ "six>=1.10.0" ,
28
+ "PySocks>=1.5.7" ,
29
+ ],
29
30
keywords = "twitter library" ,
30
31
classifiers = [
31
32
'Development Status :: 4 - Beta' ,
You can’t perform that action at this time.
0 commit comments