python_env / pyproject.toml
uvpatel7271's picture
Upload folder using huggingface_hub
c8e832f verified
raw
history blame contribute delete
805 Bytes
[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"]