invoice-exception-handler / pyproject.toml
YUS200619's picture
fix: add server module, pyproject.toml scripts, uv.lock
e12d96c
raw
history blame contribute delete
709 Bytes
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "invoice-exception-handler"
version = "1.0.0"
description = "An AI agent learning environment simulating accounts payable exception handling."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Yusuf"},
]
dependencies = [
"pydantic>=2.7",
"fastapi>=0.111",
"uvicorn>=0.29",
"gradio>=4.36",
"openai>=1.35",
"pyyaml>=6.0",
"httpx>=0.27",
"python-multipart>=0.0.9",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "server.app:main"
[tool.setuptools.packages.find]
include = ["env*", "server*"]