File size: 432 Bytes
30bf68a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | [project]
name = "cicd-debugger-env"
version = "0.1.0"
description = "OpenEnv CI/CD pipeline debugging environment with hybrid grading and reward shaping"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pyyaml",
"fastapi",
"uvicorn",
"openenv-core",
"openai",
]
[project.scripts]
server = "server.app:main"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
|