Files
api_gateway/pyproject.toml
furyhawk 1528a7c769 Add initial implementation of OpenAPI API Gateway framework
- Create core application structure with FastAPI
- Implement dynamic route registration and management endpoints
- Define configuration models for gateway settings, upstreams, and routes
- Add proxy request handling for upstream services
- Include example configuration and OpenAPI specification files
- Set up development dependencies and project metadata
2026-05-31 11:47:08 +08:00

31 lines
591 B
TOML

[project]
name = "openapi-api-gateway"
version = "0.1.0"
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"