Fix dependencies

This commit is contained in:
Nicolas Duhamel 2021-02-25 22:22:06 +01:00
parent 0a732b478a
commit 40d2858fe9
2 changed files with 5 additions and 4 deletions

View File

@ -6,9 +6,6 @@ version = 0.0.1
package_dir = package_dir =
=src =src
packages = find_namespace: packages = find_namespace:
install_requires =
typer==0.3.2
citadel.mqtt==0.0.1
[options.packages.find] [options.packages.find]
where = src where = src

View File

@ -1,2 +1,6 @@
import setuptools import setuptools
setuptools.setup()
setuptools.setup(
'typer==0.3.2'
'citadel.mqtt @ git+https://git.quimbo.fr/citadel/mqtt.git@master#egg=citadel.mqtt',
)