Spaces:
Running
Running
| [build-system] | |
| requires = ["setuptools>=68", "wheel"] | |
| build-backend = "setuptools.backends.legacy:build" | |
| [project] | |
| name = "code-debug-env" | |
| version = "1.0.0" | |
| description = "OpenEnv environment for LLM-based code debugging" | |
| requires-python = ">=3.10" | |
| dependencies = [ | |
| "fastapi>=0.110.0", | |
| "uvicorn[standard]>=0.29.0", | |
| "pydantic>=2.0.0", | |
| "openai>=1.0.0", | |
| "requests>=2.31.0", | |
| "openenv-core>=0.2.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=8.0.0", | |
| "httpx>=0.27.0", | |
| ] | |
| [tool.setuptools.packages.find] | |
| where = ["."] | |
| [project.scripts] | |
| server = "app:main" | |
| app = "app:main" | |
| run = "run:main" |