11 lines
213 B
Python
11 lines
213 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
install_requires = [
|
|
'citadel.mqtt @ git+https://git.quimbo.fr/citadel/mqtt.git@master#egg=citadel.mqtt',
|
|
'systemd-python',
|
|
'typer==0.3.2'
|
|
]
|
|
)
|
|
|