openenv / pyproject.toml
AnkushRaheja's picture
Upload 2 files
21a762a verified
raw
history blame contribute delete
650 Bytes
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "data-cleaning-benchmark"
version = "1.0.0"
description = "A multi-task OpenEnv benchmark for tabular data cleaning."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi==0.110.0",
"uvicorn==0.27.1",
"pydantic==2.6.3",
"pandas==2.2.1",
"numpy==1.26.4",
"openai>=2.7.2",
"openenv-core>=0.2.0",
"python-dotenv==1.0.1",
"httpx==0.27.0",
"pytest==8.1.1",
]
[project.scripts]
server = "server.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]