From 9d34802957a7f7cc3af0b4b73b10fc5805f1089b Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Sun, 4 Jul 2021 16:24:26 +0200 Subject: [PATCH] Removed unused, and updated packages. --- requirements.txt | 18 +++++------------- setup.py | 17 +++++------------ 2 files changed, 10 insertions(+), 25 deletions(-) diff --git a/requirements.txt b/requirements.txt index 298581d..d90afb7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,14 +1,6 @@ -asn1crypto==0.24.0 -bcrypt==3.1.4 -cffi==1.11.5 -colored==1.3.5 -cryptography==2.5 -deluge-client==1.6.0 +colored==1.4.2 +deluge-client==1.9.0 docopt==0.6.2 -idna==2.7 -pyasn1==0.4.4 -pycparser==2.18 -PyNaCl==1.2.1 -six==1.11.0 -sshtunnel==0.1.4 -websockets==6.0 +requests==2.25.1 +sshtunnel==0.4.0 +websockets==9.1 \ No newline at end of file diff --git a/setup.py b/setup.py index a492beb..7d121cb 100644 --- a/setup.py +++ b/setup.py @@ -13,19 +13,12 @@ setuptools.setup( long_description_content_type="text/markdown", url="https://github.com/kevinmidboe/delugeClient", install_requires=[ - 'asn1crypto==0.24.0', - 'bcrypt==3.1.4', - 'colored==1.3.5', - 'cryptography==2.5', - 'deluge-client==1.6.0', + 'colored==1.4.2', + 'deluge-client==1.9.0', 'docopt==0.6.2', - 'idna==2.7', - 'pyasn1==0.4.4', - 'pycparser==2.18', - 'PyNaCl==1.2.1', - 'six==1.11.0', - 'sshtunnel==0.1.4', - 'websockets==6.0' + 'requests==2.25.1', + 'sshtunnel==0.4.0', + 'websockets==9.1' ], classifiers=[ 'Programming Language :: Python',