Skip to content

Commit 89a154e

Browse files
committed
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.
1 parent 922ec24 commit 89a154e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
long_description=LONG_DESCRIPTION,
1515
packages=find_packages(),
1616
python_requires=">=3.8",
17-
install_requires=[],
17+
install_requires=[
18+
"openstacksdk",
19+
"tabulate"
20+
],
1821
keywords=["python, openstack"],
1922
)

0 commit comments

Comments
 (0)