From 4a8f9c6b604f93a6587e09b801fcc95424bdb681 Mon Sep 17 00:00:00 2001 From: VladKochetov007 Date: Thu, 3 Jun 2021 03:49:48 +0300 Subject: [PATCH] debug --- quick_trade/utils.py | 2 +- setup.py | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/quick_trade/utils.py b/quick_trade/utils.py index 8177e680..01986224 100644 --- a/quick_trade/utils.py +++ b/quick_trade/utils.py @@ -36,7 +36,7 @@ "https://teletype.in/@cozy_codespace/Hk70-Ntl4 -- heroku and threading problems", "https://stackoverflow.com/questions/57838939/handling-exceptions-with-bulk-api-requests --" "IEX token"] -__version__: str = "4.4" +__version__: str = "4.5" SCATTER_SIZE: float = 12.0 SCATTER_ALPHA: float = 1.0 diff --git a/setup.py b/setup.py index fc220529..2574ef02 100644 --- a/setup.py +++ b/setup.py @@ -11,21 +11,21 @@ author='Vlad Kochetov', author_email='vladyslavdrrragonkoch@gmail.com', packages=setuptools.find_packages(), - version='4.4', + version='4.5', description='Trading system for crypto, forex, stocks and others', long_description=long_desc, long_description_content_type="text/markdown", url='https://github.com/VladKochetov007/quick_trade', install_requires=[ - 'plotly==4.14.3' - 'pykalman==0.9.5' - 'numpy==1.20.3' - 'pandas==1.2.4' - 'ta==0.7.0' - 'scipy==1.6.3' + 'plotly==4.14.3', + 'pykalman==0.9.5', + 'numpy==1.20.3', + 'pandas==1.2.4', + 'ta==0.7.0', + 'scipy==1.6.3', 'ccxt==1.50.69' ], - download_url='https://github.com/VladKochetov007/quick_trade/archive/4.4.tar.gz', + download_url='https://github.com/VladKochetov007/quick_trade/archive/4.5.tar.gz', keywords=[ 'technical-analysis', 'python3',