From 9a9bbbca9c56eb33efe3cf7698fda4671e1fba61 Mon Sep 17 00:00:00 2001 From: Simon Baars Date: Wed, 27 Sep 2023 17:12:33 +0100 Subject: [PATCH] Add dependency to setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bf706ff..6bff740 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"], + install_requires=["lxml", "requests", "cloudscraper", "garth"], entry_points={ "console_scripts": ["withings-sync=withings_sync.sync:main"], },