[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "blea" version = "0.6.5" description = "Universal Agent Plugin for safe BLE diagnostics and automation via Skill, CLI, and MCP" readme = "README.md" requires-python = ">=3.10" license = { file = "LICENSE" } authors = [ { name = "Nitmi" }, ] keywords = [ "bluetooth", "ble", "hardware", "agent", "agent-plugin", "agent-skill", "cli", "mcp", ] classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", ] dependencies = [ "bleak>=1.1,<2", "mcp>=1.26,<2", "PyYAML>=6.0.2", ] [project.urls] Homepage = "https://github.com/Nitmi/blea" Repository = "https://github.com/Nitmi/blea" Issues = "https://github.com/Nitmi/blea/issues" Changelog = "https://github.com/Nitmi/blea/blob/main/CHANGELOG.md" [project.optional-dependencies] dev = [ "pytest>=8.3", "pytest-asyncio>=0.25", "ruff>=0.11", "tomli>=2.0; python_version < '3.11'", ] binary = [ "pyinstaller==6.22.2", "tomli>=2.0; python_version < '3.11'", ] [project.scripts] ble = "blea.cli:main" blea = "blea.cli:main" [tool.hatch.build.targets.wheel] packages = ["src/blea"] [tool.pytest.ini_options] addopts = "-q" asyncio_mode = "auto" testpaths = ["tests"] [tool.ruff] line-length = 100 target-version = "py310" [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "SIM"]