From 8febfe59723bfe1cb28d04758b20e730a23da9ff Mon Sep 17 00:00:00 2001 From: "J. Rast" Date: Thu, 28 Sep 2023 23:24:11 +0200 Subject: [PATCH] Removed cloudscrapper from requirements --- requirements.txt | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index c2cd2ea..490757e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ lxml requests -cloudscraper garth diff --git a/setup.py b/setup.py index e00068f..7bd2b9d 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def read(fname): "Topic :: Utilities", "License :: OSI Approved :: MIT License", ], - install_requires=["lxml", "requests", "cloudscraper", "garth"], + install_requires=["lxml", "requests", "garth"], entry_points={ "console_scripts": ["withings-sync=withings_sync.sync:main"], },