From 715cd9886d537b3cd7ac218cd510313b2ecbb77d Mon Sep 17 00:00:00 2001 From: Leogendra Date: Thu, 6 Nov 2025 00:09:37 +0100 Subject: [PATCH 1/2] Add beautifulsoup4 to requirements --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f5786d6..477bedb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,5 @@ tls_client==1.0 typing_extensions==4.12.2 validators==0.33.0 websockets==12.0 -pyotp==2.9.0 \ No newline at end of file +pyotp==2.9.0 +beautifulsoup4 \ No newline at end of file From 5dc6f128397c20f421b49b155e5556c302ff92a0 Mon Sep 17 00:00:00 2001 From: Leogendra Date: Thu, 6 Nov 2025 00:09:55 +0100 Subject: [PATCH 2/2] Add pyotp and beautifulsoup4 to install requirements --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4998259..95ec3d8 100644 --- a/setup.py +++ b/setup.py @@ -9,6 +9,8 @@ "tls_client", "typing_extensions", "validators", + "pyotp", + "beautifulsoup4", ] __extras__ = { "websocket": ["websockets"], @@ -55,5 +57,5 @@ ], long_description=long_description, long_description_content_type="text/markdown", - version="1.2.4", + version="1.2.5", )