SHYAMSATHISH005/data-cleaning-openenv
1
1[build-system]2requires = ["setuptools>=61.0"]3build-backend = "setuptools.build_meta"4 5[project]6name = "data-cleaning-openenv"7version = "0.1.0"8description = "A production-grade OpenEnv environment for training and evaluating data-cleaning agents."9readme = "README.md"10requires-python = ">=3.10"11dependencies = [12 "pandas",13 "numpy",14 "fastapi",15 "uvicorn",16 "pydantic",17 "openai",18 "faker",19 "python-multipart",20 "openenv-core>=0.2.0"21]22 23[project.scripts]24server = "server.app:main"25 