From 51e9e506a7af14b9e5b5429c7e9f598feb73033a Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Tue, 10 Dec 2024 14:29:04 +0000 Subject: [PATCH] MAINT: Add openstacksdk to setup.py OpenstackSDK should be added to the install_requires. This is a list of packages required for a minimal installation of the package. We can leave out other packages in the requirements.txt as they are only used to configure the environment. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c9a2d9d..03693b9 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,6 @@ long_description=LONG_DESCRIPTION, packages=find_packages(), python_requires=">=3.8", - install_requires=[], + install_requires=["openstacksdk", "tabulate"], keywords=["python, openstack"], )