CoolFace
Apppublic

Raje19112003/Invoice_Dispute_Resolution_Environment

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.backends.legacy:build"4 5[project]6name = "invoice-dispute-env"7version = "1.0.0"8description = "OpenEnv RL environment for billing dispute resolution"9requires-python = ">=3.11"10dependencies = [11    "fastapi==0.111.0",12    "uvicorn[standard]==0.29.0",13    "pydantic==2.7.1",14    "openai>=1.30.0",15    "requests>=2.31.0",16    "openenv-core>=0.2.0"17]18 19[project.optional-dependencies]20dev = [21    "pytest>=8.0",22    "httpx>=0.27",23]24 25[project.scripts]26server = "server.app:main"27 28[tool.setuptools.packages.find]29where = ["."]30