From d2108250101cd8c00ff8e824a7c524d333106470 Mon Sep 17 00:00:00 2001 From: Alexander Golec Date: Wed, 3 Jun 2020 08:30:18 -0400 Subject: [PATCH] Forgot to include websockets as a dependency --- setup.py | 6 +++++- tda/version.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e5c2def..1d5bfa7 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,11 @@ 'Topic :: Office/Business :: Financial :: Investment', ], python_requires='>=3.6', - install_requires=['requests_oauthlib', 'python-dateutil', 'selenium'], + install_requires=[ + 'requests_oauthlib', + 'python-dateutil', + 'selenium', + 'websockets'], keywords='finance trading equities bonds options research', project_urls={ 'Documentation': 'https://tda-api.readthedocs.io/en/latest/', diff --git a/tda/version.py b/tda/version.py index 60fb6a5..01673f6 100644 --- a/tda/version.py +++ b/tda/version.py @@ -1 +1 @@ -version = '0.2.0' +version = '0.2.1'