From 5113ceb6c85a577149e14dca48c09b77fc70684b Mon Sep 17 00:00:00 2001 From: Sam Germain Date: Tue, 21 Sep 2021 15:52:12 -0600 Subject: [PATCH] added schedule to setup.py --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 727c40c7c..bbf797ac5 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ hyperopt = [ 'joblib', 'progressbar2', 'psutil', - ] +] develop = [ 'coveralls', @@ -31,7 +31,7 @@ jupyter = [ 'nbstripout', 'ipykernel', 'nbconvert', - ] +] all_extra = plot + develop + jupyter + hyperopt @@ -41,7 +41,7 @@ setup( 'pytest-asyncio', 'pytest-cov', 'pytest-mock', - ], + ], install_requires=[ # from requirements.txt 'ccxt>=1.50.48', @@ -71,7 +71,8 @@ setup( 'fastapi', 'uvicorn', 'pyjwt', - 'aiofiles' + 'aiofiles', + 'schedule' ], extras_require={ 'dev': all_extra,