diff --git a/setup.cfg b/setup.cfg index bf3c85f..12b2aa9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,10 +7,6 @@ package_dir = =src packages = find_namespace: -install_requires = - systemd-python==234 - typer==0.3.2 - [options.packages.find] where = src diff --git a/setup.py b/setup.py index 22e67a4..ad8cd83 100644 --- a/setup.py +++ b/setup.py @@ -2,8 +2,10 @@ import setuptools setuptools.setup( install_requires = [ - 'pyamaha @ git+https://github.com/nduhamel/pyamaha.git@citadel#egg=pyamaha', - 'citadel.mqtt @ git+https://git.quimbo.fr/citadel/mqtt.git@master#egg=citadel.mqtt' + 'pyamaha @ git+https://github.com/nduhamel/pyamaha.git@citadel#egg=pyamaha', + 'citadel.mqtt @ git+https://git.quimbo.fr/citadel/mqtt.git@master#egg=citadel.mqtt', + 'systemd-python==234', + 'typer==0.3.2' ] )