Spaces:
Sleeping
Sleeping
File size: 595 Bytes
ff9fcbd | 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 | [project]
name = "code-review-env"
version = "1.0.0"
description = "OpenEnv environment for code review and security audit training"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.100.0",
"uvicorn[standard]>=0.23.0",
"pydantic>=2.0.0",
"httpx>=0.24.0",
"openai>=1.0.0",
"python-dotenv>=1.0.0",
"websockets>=11.0",
"openenv-core>=0.2.0",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-asyncio"]
[project.scripts]
serve = "server.app:main"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.backends.legacy:build"
|