CoolFace
Apppublic

hydra953/invoice-processing-env

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml24 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=45", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "openenv-invoice-processing-env"7version = "0.1.0"8requires-python = ">=3.10"9description = "Invoice processing environment for AI agent training via OpenEnv"10dependencies = [11    "openenv-core>=0.1.0",12    "fastapi>=0.115.0",13    "pydantic>=2.0.0",14    "uvicorn>=0.24.0",15    "requests>=2.31.0",16    "openai>=1.0.0",17]18 19[project.scripts]20server = "server.app:main"21 22[tool.setuptools.packages.find]23include = ["server*", "data*"]24