dataclean-openenv / pyproject.toml
GlitchGhost's picture
Fix Phase 2: add [START]/[STEP]/[END] structured output to inference.py
48e9b06
raw
history blame contribute delete
703 Bytes
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dataclean-env"
version = "1.0.0"
description = "OpenEnv environment for training AI agents on real-world data-quality cleaning tasks"
readme = "README.md"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"requests>=2.25.0",
"pydantic>=2.0.0",
"openai>=1.0.0",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
server = [
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
]
[tool.setuptools.packages.find]
include = ["dataclean_env*"]