File size: 514 Bytes
7c54da3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fb9822b
 
 
7c54da3
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[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"