20 lines
373 B
TOML
20 lines
373 B
TOML
|
[tool.poetry]
|
||
|
name = "huecli"
|
||
|
version = "0.1.0"
|
||
|
description = ""
|
||
|
authors = ["Torjus Håkestad <torjus@uio.no>"]
|
||
|
license = "MIT"
|
||
|
readme = "README.md"
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.11"
|
||
|
paho-mqtt = "^2.1.0"
|
||
|
typer = "^0.12.3"
|
||
|
|
||
|
[tool.poetry.scripts]
|
||
|
huecli = "huecli.__main__:main"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core"]
|
||
|
build-backend = "poetry.core.masonry.api"
|