Files
hcpy/pyproject.toml
2024-11-21 15:48:53 +01:00

24 lines
445 B
TOML

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "hcpy"
version = "0.1.5"
description = "HC to MQTT bridge"
requires-python = "==3.10"
dependencies = [
"bs4",
"requests",
"pycryptodome",
"websocket-client",
"sslpsk",
"paho-mqtt==1.6.1",
"lxml",
"click",
"click-config-file"
]
[project.scripts]
hc-login = "hcpy.hc_login:main"
hc2mqtt = "hcpy.hc2mqtt:hc2mqtt"