2026-03-12 01:40:08 +00:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "ops-bridge"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "SSH reverse tunnel lifecycle manager"
|
|
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"typer>=0.12",
|
|
|
|
|
"pyyaml>=6.0",
|
|
|
|
|
"httpx>=0.27",
|
2026-03-27 14:10:49 +01:00
|
|
|
"fastmcp>=2.0.0,<3.1.0",
|
2026-03-12 01:40:08 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
bridge = "bridge.cli:app"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["src/bridge"]
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
pythonpath = ["src"]
|
2026-03-12 11:33:16 +01:00
|
|
|
asyncio_mode = "auto"
|
|
|
|
|
markers = [
|
|
|
|
|
"capability(name): the bridge capability under test",
|
|
|
|
|
"access_mode(mode): access mode being tested (cli, mcp, skill)",
|
|
|
|
|
]
|
2026-03-12 01:40:08 +00:00
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
line-length = 88
|
|
|
|
|
|
|
|
|
|
[dependency-groups]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=8.0",
|
|
|
|
|
"pytest-asyncio>=0.23",
|
|
|
|
|
"ruff>=0.4",
|
|
|
|
|
]
|