From 8523719a49ecbf62a6a209667e5820854d8ff812 Mon Sep 17 00:00:00 2001 From: Nicolas Duhamel Date: Thu, 25 Feb 2021 22:14:28 +0100 Subject: [PATCH] Fix dependencies again... --- setup.cfg | 4 ---- setup.py | 6 ++++-- 2 files changed, 4 insertions(+), 6 deletions(-) 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' ] )