CoolFace
Apppublic

kumar6591/data-quality-env

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml30 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=68", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "data-quality-env"7version = "1.0.0"8description = "OpenEnv RL environment for SQL data quality auditing"9readme = "README.md"10requires-python = ">=3.11"11dependencies = [12  "openenv-core>=0.2.0",13  "fastapi>=0.111.0",14  "uvicorn>=0.29.0",15  "duckdb>=0.10.3",16  "pydantic>=2.7.1",17  "pandas>=2.2.2",18  "numpy>=1.26.4",19  "pyarrow>=16.1.0",20  "gradio>=6.10.0",21  "openai>=2.7.2",22  "requests>=2.31.0",23]24 25[project.scripts]26server = "server.app:main"27 28[tool.setuptools]29packages = ["env", "tasks", "server"]30