Skip to content

Commit

Permalink
MAINT: Add openstacksdk to setup.py
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
khalford committed Dec 10, 2024
1 parent 922ec24 commit 89a154e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
long_description=LONG_DESCRIPTION,
packages=find_packages(),
python_requires=">=3.8",
install_requires=[],
install_requires=[
"openstacksdk",
"tabulate"
],
keywords=["python, openstack"],
)

0 comments on commit 89a154e

Please sign in to comment.