Files
2026-06-01 10:32:45 +08:00

31 lines
591 B
TOML

[project]
name = "openapi-api-gateway"
version = "0.2.1"
description = "Configurable OpenAPI-first API gateway framework"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"httpx>=0.27.0",
"pydantic>=2.8.0",
"pyyaml>=6.0.0"
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"ruff>=0.6.0"
]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"