Skip to content

Commit 4b66b1e

Browse files
committed
depend on forked grequests because upstream is unmaintained
1 parent 0541252 commit 4b66b1e

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,31 @@
33

44
NAME = 'pytradelib'
55

6+
67
def readme():
78
with open('README.md') as f:
89
return f.read()
910

1011
INSTALL_REQUIRES = ([
1112
'pandas',
12-
'pandas-datareader',
13-
'tables',
1413
'requests',
15-
'grequests',
14+
'grequests==0.3.0',
1615
'pytz',
16+
'ta-lib',
1717
])
1818

19+
DEPENDENCY_LINKS = [
20+
'https://github.com/briancappello/grequests/tarball/master#egg=grequests-0.3.0',
21+
]
22+
1923
setup(
2024
name=NAME,
2125
version='0.0.1',
2226
license='BSD License',
2327
author='Brian Cappello',
2428
author_email='[email protected]',
2529
install_requires=INSTALL_REQUIRES,
30+
dependency_links=DEPENDENCY_LINKS,
2631
packages=find_packages('.'),
2732
zip_safe=False,
2833
)

0 commit comments

Comments
 (0)