Reorg dependencies to have hyperopt seperated
This commit is contained in:
parent
27cc73f47e
commit
47b6b56566
@ -9,25 +9,26 @@ dependencies:
|
|||||||
- wheel
|
- wheel
|
||||||
- numpy
|
- numpy
|
||||||
- pandas
|
- pandas
|
||||||
- scipy
|
|
||||||
- SQLAlchemy
|
- SQLAlchemy
|
||||||
- scikit-learn
|
|
||||||
- arrow
|
- arrow
|
||||||
- requests
|
- requests
|
||||||
- urllib3
|
- urllib3
|
||||||
- wrapt
|
- wrapt
|
||||||
- joblib
|
|
||||||
- jsonschema
|
- jsonschema
|
||||||
- tabulate
|
- tabulate
|
||||||
- python-rapidjson
|
- python-rapidjson
|
||||||
- filelock
|
|
||||||
- flask
|
- flask
|
||||||
- python-dotenv
|
- python-dotenv
|
||||||
- cachetools
|
- cachetools
|
||||||
- scikit-optimize
|
|
||||||
- python-telegram-bot
|
- python-telegram-bot
|
||||||
# Optional for plotting
|
# Optional for plotting
|
||||||
- plotly
|
- plotly
|
||||||
|
# Optional for hyperopt
|
||||||
|
- scipy
|
||||||
|
- scikit-optimize
|
||||||
|
- scikit-learn
|
||||||
|
- filelock
|
||||||
|
- joblib
|
||||||
# Optional for development
|
# Optional for development
|
||||||
- flake8
|
- flake8
|
||||||
- pytest
|
- pytest
|
||||||
|
@ -8,21 +8,15 @@ cachetools==3.1.1
|
|||||||
requests==2.22.0
|
requests==2.22.0
|
||||||
urllib3==1.25.5
|
urllib3==1.25.5
|
||||||
wrapt==1.11.2
|
wrapt==1.11.2
|
||||||
scikit-learn==0.21.3
|
|
||||||
joblib==0.13.2
|
|
||||||
jsonschema==3.0.2
|
jsonschema==3.0.2
|
||||||
TA-Lib==0.4.17
|
TA-Lib==0.4.17
|
||||||
tabulate==0.8.3
|
tabulate==0.8.3
|
||||||
coinmarketcap==5.0.3
|
coinmarketcap==5.0.3
|
||||||
|
|
||||||
# Required for hyperopt
|
|
||||||
scikit-optimize==0.5.2
|
|
||||||
filelock==3.0.12
|
|
||||||
|
|
||||||
# find first, C search in arrays
|
# find first, C search in arrays
|
||||||
py_find_1st==1.1.4
|
py_find_1st==1.1.4
|
||||||
|
|
||||||
#Load ticker files 30% faster
|
# Load ticker files 30% faster
|
||||||
python-rapidjson==0.8.0
|
python-rapidjson==0.8.0
|
||||||
|
|
||||||
# Notify systemd
|
# Notify systemd
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
# Include all requirements to run the bot.
|
# Include all requirements to run the bot.
|
||||||
-r requirements.txt
|
-r requirements.txt
|
||||||
-r requirements-plot.txt
|
-r requirements-plot.txt
|
||||||
|
-r requirements-hyperopt.txt
|
||||||
|
|
||||||
coveralls==1.8.2
|
coveralls==1.8.2
|
||||||
flake8==3.7.8
|
flake8==3.7.8
|
||||||
|
9
requirements-hyperopt.txt
Normal file
9
requirements-hyperopt.txt
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Include all requirements to run the bot.
|
||||||
|
# -r requirements.txt
|
||||||
|
|
||||||
|
# Required for hyperopt
|
||||||
|
scipy==1.3.1
|
||||||
|
scikit-learn==0.21.3
|
||||||
|
scikit-optimize==0.5.2
|
||||||
|
filelock==3.0.12
|
||||||
|
joblib==0.13.2
|
@ -3,4 +3,3 @@
|
|||||||
|
|
||||||
numpy==1.17.2
|
numpy==1.17.2
|
||||||
pandas==0.25.1
|
pandas==0.25.1
|
||||||
scipy==1.3.1
|
|
||||||
|
Loading…
Reference in New Issue
Block a user