[project] name = "llm-gateway" version = "0.1.0" description = "Async LLM gateway with mock mode, per-task budgets, telemetry, and retry/fallback." requires-python = ">=3.13" dependencies = [ "httpx>=0.27", "jsonschema>=4.23", ] [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-asyncio>=0.24", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/llm_gateway"] [tool.pytest.ini_options] testpaths = ["tests"] pythonpath = ["src"] asyncio_mode = "auto"