Skip to content

Commit

Permalink
Add install variant for freqai
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Jul 31, 2022
1 parent 61693f6 commit cbb0535
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 0 additions & 1 deletion requirements-freqai.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

# Required for freqai
scikit-learn==1.1.1
scikit-optimize==0.9.0
joblib==1.1.0
catboost==1.0.4
lightgbm==3.3.2
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
'progressbar2',
]

freqai = [
'scikit-learn',
'joblib',
'catboost',
'lightgbm',
]

develop = [
'coveralls',
'flake8',
Expand All @@ -31,7 +38,7 @@
'nbconvert',
]

all_extra = plot + develop + jupyter + hyperopt
all_extra = plot + develop + jupyter + hyperopt + freqai

setup(
tests_require=[
Expand Down Expand Up @@ -79,6 +86,7 @@
'plot': plot,
'jupyter': jupyter,
'hyperopt': hyperopt,
'freqai': freqai,
'all': all_extra,
},
)

0 comments on commit cbb0535

Please sign in to comment.