File size: 703 Bytes
e2f8b29 02e58fe e2f8b29 d8eeec6 e2f8b29 56b42b0 e2f8b29 9e6a926 e2f8b29 | 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | [project]
name = "pytorch-training-debugger"
version = "1.1.0"
description = "OpenEnv RL environment for PyTorch training failure debugging"
requires-python = ">=3.12"
dependencies = [
"torch>=2.5.1",
"openenv-core",
"pydantic>=2.0",
"fastapi",
"uvicorn",
"websockets",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-asyncio",
"black",
"ruff",
"isort",
"httpx",
]
llm = [
"openai",
]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
|