Initial Commit

This commit is contained in:
2026-04-25 06:27:49 -07:00
commit d1567bf1e6
15 changed files with 1912 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[project]
name = "ble-bridge"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "J.P. Krauss", email = "jkrauss@asymworks.com" }
]
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.13.5",
"aiohttp-sse>=2.2.0",
"bleak>=3.0.1",
]
[project.scripts]
ble-bridge = "ble_bridge:main"
[build-system]
requires = ["uv_build>=0.9.18,<0.10.0"]
build-backend = "uv_build"