Properly account for charms.ceph dependencies

The setup.py file needs to be specify the dependencies of this
library, to avoid depending on them being manually installed.

Change-Id: I3ff2338f967aff5613bde777b224cd96ea81c1fd
Closes-Bug: #1987547
This commit is contained in:
Luciano Lo Giudice
2022-08-01 17:45:56 -03:00
parent 78bd3fd21a
commit 45fe9ad44e

View File

@ -6,7 +6,11 @@ from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
version = "0.0.1.dev1"
# This must be kept in sync with requirements.txt
install_require = [
'charmhelpers',
'pyudev',
]
tests_require = [