CoolFace
Apppublic

SimonPaul06/data-cleaning-env

sourceHugging Faceupdated 6mo agoView on Hugging Face
1likes
pyproject.toml19 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools", "wheel"]3build-backend = "setuptools.backends.legacy:build"4 5[project]6name = "data-cleaning-env"7version = "1.0.0"8description = "OpenEnv-compliant data cleaning environment"9requires-python = ">=3.10"10dependencies = [11    "fastapi",12    "uvicorn",13    "pandas",14    "pydantic",15    "openenv-core>=0.2.0",16]17 18[project.scripts]19server = "server.app:main"