define install_requires for package distribution
This commit is contained in:
parent
9c6c21637d
commit
04bba626a8
@ -1,4 +1,4 @@
|
|||||||
-e git+https://github.com/ericsomdahl/python-bittrex.git#egg=python-bittrex
|
-e git+https://github.com/ericsomdahl/python-bittrex.git@d7033d0#egg=python-bittrex
|
||||||
SQLAlchemy==1.1.13
|
SQLAlchemy==1.1.13
|
||||||
python-telegram-bot==8.0
|
python-telegram-bot==8.0
|
||||||
arrow==0.10.0
|
arrow==0.10.0
|
||||||
@ -6,9 +6,11 @@ requests==2.18.4
|
|||||||
urllib3==1.22
|
urllib3==1.22
|
||||||
wrapt==1.10.11
|
wrapt==1.10.11
|
||||||
pandas==0.20.3
|
pandas==0.20.3
|
||||||
matplotlib==2.0.2
|
|
||||||
scikit-learn==0.19.0
|
scikit-learn==0.19.0
|
||||||
scipy==0.19.1
|
scipy==0.19.1
|
||||||
jsonschema==2.6.0
|
jsonschema==2.6.0
|
||||||
TA-Lib==0.4.10
|
TA-Lib==0.4.10
|
||||||
|
|
||||||
|
# Required for plotting data
|
||||||
|
#matplotlib==2.0.2
|
||||||
#PYQT5==5.9
|
#PYQT5==5.9
|
17
setup.py
17
setup.py
@ -14,5 +14,22 @@ setup(name='freqtrade',
|
|||||||
scripts=['bin/freqtrade'],
|
scripts=['bin/freqtrade'],
|
||||||
test_suite='nose.collector',
|
test_suite='nose.collector',
|
||||||
tests_require=['nose'],
|
tests_require=['nose'],
|
||||||
|
install_requires=[
|
||||||
|
'python-bittrex==0.1.3',
|
||||||
|
'SQLAlchemy==1.1.13',
|
||||||
|
'python-telegram-bot==8.0',
|
||||||
|
'arrow==0.10.0',
|
||||||
|
'requests==2.18.4',
|
||||||
|
'urllib3==1.22',
|
||||||
|
'wrapt==1.10.11',
|
||||||
|
'pandas==0.20.3',
|
||||||
|
'scikit-learn==0.19.0',
|
||||||
|
'scipy==0.19.1',
|
||||||
|
'jsonschema==2.6.0',
|
||||||
|
'TA-Lib==0.4.10',
|
||||||
|
],
|
||||||
|
dependency_links=[
|
||||||
|
"git+https://github.com/ericsomdahl/python-bittrex.git@d7033d0#egg=python-bittrex-0.1.3"
|
||||||
|
],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False)
|
zip_safe=False)
|
||||||
|
Loading…
Reference in New Issue
Block a user