Files
rehearshalhub/watcher/pyproject.toml
2026-04-10 10:13:28 +02:00

35 lines
584 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rehearsalhub-watcher"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.27",
"redis[hiredis]>=5.0",
"pydantic-settings>=2.3",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-asyncio>=0.23",
"pytest-cov>=5",
"respx>=0.21",
"ruff>=0.4",
]
[tool.hatch.build.targets.wheel]
packages = ["src/watcher"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[dependency-groups]
dev = [
"ruff>=0.15.10",
]