Fix dependencies again...

This commit is contained in:
Nicolas Duhamel 2021-02-25 22:14:28 +01:00
parent 47b058e94a
commit 8523719a49
2 changed files with 4 additions and 6 deletions

View File

@ -7,10 +7,6 @@ package_dir =
=src =src
packages = find_namespace: packages = find_namespace:
install_requires =
systemd-python==234
typer==0.3.2
[options.packages.find] [options.packages.find]
where = src where = src

View File

@ -2,8 +2,10 @@ import setuptools
setuptools.setup( setuptools.setup(
install_requires = [ install_requires = [
'pyamaha @ git+https://github.com/nduhamel/pyamaha.git@citadel#egg=pyamaha', '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' 'citadel.mqtt @ git+https://git.quimbo.fr/citadel/mqtt.git@master#egg=citadel.mqtt',
'systemd-python==234',
'typer==0.3.2'
] ]
) )