From 2d0f00893338adb39c6680cd135e3bb8e976f222 Mon Sep 17 00:00:00 2001 From: ajskrilla Date: Wed, 16 Mar 2022 14:17:05 -0600 Subject: [PATCH 1/2] test --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 4425f05..9acc308 100644 --- a/setup.py +++ b/setup.py @@ -7,4 +7,5 @@ "version_scheme": "python-simplified-semver", "write_to": "grafana_api/version.py", }, + install_requires=['requests'], ) From f4da29e9c0b3ae84442b1a8662dc1f27df9f582c Mon Sep 17 00:00:00 2001 From: ajskrilla Date: Wed, 16 Mar 2022 14:21:58 -0600 Subject: [PATCH 2/2] Added the dependent library to the setup.py file --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 9acc308..f5613e2 100644 --- a/setup.py +++ b/setup.py @@ -7,5 +7,6 @@ "version_scheme": "python-simplified-semver", "write_to": "grafana_api/version.py", }, + # For all dependent libraries install_requires=['requests'], )