CoolFace
Apppublic

KingHero121/dataforge-env

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml28 linesDownload Raw Back to root
1[project]2name = "dataforge-env"3version = "1.0.0"4description = "OpenEnv environment for data cleaning and reconciliation tasks"5requires-python = ">=3.10"6authors = [7    { name = "Aaryan" }8]9dependencies = [10    "fastapi>=0.110.0",11    "uvicorn[standard]>=0.29.0",12    "pydantic>=2.6.0",13    "numpy>=1.26.0",14    "pandas>=2.2.0",15    "requests>=2.31.0",16    "openai>=1.12.0",17    "openenv-core>=0.2.0"18]19 20[project.scripts]21server = "server.app:main"22 23[build-system]24requires = ["setuptools>=68.0", "wheel"]25build-backend = "setuptools.build_meta"26 27[tool.setuptools.packages.find]28where = ["."]