py-yamaha2mqtt/setup.py
Nicolas Duhamel de3c9d51b2
Some checks failed
continuous-integration/drone/push Build is failing
Add retry for api state (handling random error)
2021-07-21 11:21:33 +02:00

17 lines
334 B
Python

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',
'systemd-python==234',
'typer==0.3.2',
'tenacity==8.0.1'
]
)