[build-system] requires = ["hatchling==1.27.0"] build-backend = "hatchling.build" [project] name = "endpoint-monitor" version = "1.0.0" description = "Process-local FastAPI endpoint monitoring service" readme = "README.md" requires-python = ">=3.12,<3.13" dependencies = [ "fastapi==0.115.12", "httpx==0.28.1", "pydantic-settings==2.9.1", "uvicorn[standard]==0.34.2", ] [tool.hatch.build.targets.wheel] packages = ["app"] [tool.pytest.ini_options] testpaths = ["tests"] addopts = "-q" [tool.ruff] target-version = "py312" line-length = 100 [tool.ruff.lint] select = ["E", "F", "I", "B", "UP"] [tool.mypy] python_version = "3.12" strict = true plugins = ["pydantic.mypy"] [[tool.mypy.overrides]] module = ["tests.*"] disallow_untyped_decorators = false