remove version pinning from setup.py

This commit is contained in:
gcarq 2017-11-09 00:33:22 +01:00
parent fafbb0abfe
commit 567ed4ecda
1 changed files with 14 additions and 14 deletions

View File

@ -21,22 +21,22 @@ setup(name='freqtrade',
setup_requires=['pytest-runner'], setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-mock', 'pytest-cov'], tests_require=['pytest', 'pytest-mock', 'pytest-cov'],
install_requires=[ install_requires=[
'python-bittrex==0.2.0', 'python-bittrex',
'SQLAlchemy==1.1.13', 'SQLAlchemy',
'python-telegram-bot==8.1.1', 'python-telegram-bot',
'arrow==0.10.0', 'arrow',
'requests==2.18.4', 'requests',
'urllib3==1.22', 'urllib3',
'wrapt==1.10.11', 'wrapt',
'pandas==0.20.3', 'pandas',
'scikit-learn==0.19.0', 'scikit-learn',
'scipy==0.19.1', 'scipy',
'jsonschema==2.6.0', 'jsonschema',
'TA-Lib==0.4.10', 'TA-Lib',
'tabulate==0.8.1', 'tabulate',
], ],
dependency_links=[ dependency_links=[
"git+https://github.com/ericsomdahl/python-bittrex.git@0.2.0#egg=python-bittrex-0.2.0" "git+https://github.com/ericsomdahl/python-bittrex.git@0.2.0#egg=python-bittrex"
], ],
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,