Spaces:
Build error
Build error
File size: 805 Bytes
c8e832f | 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 | [build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-python_env"
version = "0.2.0"
description = "Deterministic Python code review and repair benchmark environment for OpenEnv"
requires-python = ">=3.10"
dependencies = [
"openenv-core[core]>=0.2.2",
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"openai>=1.40.0",
"pytest>=8.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
]
[project.scripts]
server = "python_env.server.app:main"
[tool.setuptools]
include-package-data = true
packages = ["python_env", "python_env.server"]
package-dir = { "python_env" = ".", "python_env.server" = "server" }
[tool.pytest.ini_options]
testpaths = ["tests"]
|