mirror of
https://github.com/tahnok/colmi_r02_client.git
synced 2026-02-06 10:47:28 +00:00
27 lines
595 B
TOML
27 lines
595 B
TOML
[tool.poetry]
|
|
name = "colmi-r02-client"
|
|
version = "0.1.0"
|
|
description = "Connect to Colmi R02 smart ring over BLE"
|
|
authors = ["Wesley Ellis <tahnok@gmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.11,<3.13"
|
|
bleak = "^0.22.2"
|
|
asyncclick = "^8.1.7.2"
|
|
|
|
[tool.poetry.scripts]
|
|
colmi_r02_client = "colmi_r02_client.main:cli_client"
|
|
colmi_r02_util = "colmi_r02_client.main:util"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.3.2"
|
|
ruff = "^0.6.0"
|
|
mypy = "^1.11.1"
|
|
freezegun = "^1.5.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|