We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0541252 commit 4b66b1eCopy full SHA for 4b66b1e
setup.py
@@ -3,26 +3,31 @@
3
4
NAME = 'pytradelib'
5
6
+
7
def readme():
8
with open('README.md') as f:
9
return f.read()
10
11
INSTALL_REQUIRES = ([
12
'pandas',
- 'pandas-datareader',
13
- 'tables',
14
'requests',
15
- 'grequests',
+ 'grequests==0.3.0',
16
'pytz',
+ 'ta-lib',
17
])
18
19
+DEPENDENCY_LINKS = [
20
+ 'https://github.com/briancappello/grequests/tarball/master#egg=grequests-0.3.0',
21
+]
22
23
setup(
24
name=NAME,
25
version='0.0.1',
26
license='BSD License',
27
author='Brian Cappello',
28
author_email='[email protected]',
29
install_requires=INSTALL_REQUIRES,
30
+ dependency_links=DEPENDENCY_LINKS,
31
packages=find_packages('.'),
32
zip_safe=False,
33
)
0 commit comments