CoolFace
Apppublic

Nihar-776/Hackathon-MetaPytorch

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml25 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=68.0", "wheel"]3build-backend = "setuptools.backends.legacy:build"4 5[project]6name = "record-repair-openenv"7version = "1.0.0"8description = "OpenEnv-compliant RL environment for record repair using LLM agents"9requires-python = ">=3.11"10dependencies = [11    "fastapi>=0.111.0",12    "uvicorn>=0.29.0",13    "pydantic>=2.0.0",14    "pyyaml>=6.0",15    "openai>=1.0.0",16    "requests>=2.31.0",17    "openenv-core>=0.2.0",18]19 20[project.scripts]21server = "server.app:app"22 23[tool.setuptools.packages.find]24where = ["."]25