| 1234567891011121314151617181920212223 |
- [build-system]
- requires = ["setuptools>=68"]
- build-backend = "setuptools.build_meta"
- [project]
- name = "model-gateway-service"
- version = "0.1.0"
- description = "Model gateway service for agent platform."
- requires-python = ">=3.11"
- dependencies = [
- "fastapi>=0.111,<1.0",
- "httpx>=0.27,<1.0",
- "pydantic>=2.7,<3.0",
- "uvicorn[standard]>=0.30,<1.0",
- "core-domain",
- "core-shared",
- ]
- [tool.setuptools]
- package-dir = {"" = "."}
- [tool.setuptools.packages.find]
- where = ["."]
|