[tool.poetry] name = "bmspy" version = "2.0" description = "bmspy is a tool to get information from a xiaoxiang-type BMS system" authors = ["Timothy Allen "] license = "CC BY-NC-SA 4.0" readme = "README.md" [tool.poetry.dependencies] python = "^3.8" pyserial = "^3.5" influxdb-client = {version = "^1.19.0", optional = true, extras = ["influxdb"]} prometheus-client = {version = "^0.11.0", optional = true, extras = ["prometheus"]} [tool.poetry.extras] influxdb = ["influxdb-client"] prometheus = ["prometheus-client"] [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] bmspy = "bmspy:main" bmspy-server = "bmspy.server:main" bmspy-influxdb = "bmspy.influxdb:main" bmspy-prometheus = "bmspy.prometheus:main" #bmspy-usbd = "bmspy.usbhid:main"