| [build-system] | |
| requires = ["setuptools>=68"] | |
| build-backend = "setuptools.backends.legacy:BuildBackend" | |
| [project] | |
| name = "pytorch-debug-env" | |
| version = "1.0.0" | |
| requires-python = ">=3.11" | |
| dependencies = [ | |
| "fastapi==0.115.0", | |
| "uvicorn[standard]==0.30.6", | |
| "pydantic==2.9.2", | |
| "numpy==2.1.1", | |
| "openai==1.51.0", | |
| "httpx==0.27.2", | |
| "openenv>=0.1.0", | |
| ] | |
| [project.scripts] | |
| server = "server.app:main" | |
| [tool.setuptools.packages.find] | |
| where = ["src"] | |
| [tool.pytest.ini_options] | |
| asyncio_mode = "auto" | |