CoolFace
Apppublic

ahagestedt/quickbooks-qa

sourceHugging Facemitupdated 7mo agoView on Hugging Face
0likes
pyproject.toml34 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=68.0"]3build-backend = "setuptools.build_meta"4 5[project]6name = "quickbooks-qa-env"7version = "0.1.0"8description = "QuickBooks QA evaluation environment for OpenEnv"9requires-python = ">=3.10"10license = {text = "MIT"}11 12dependencies = [13    "openenv-core>=0.1.0",14    "fastapi>=0.104.0",15    "uvicorn>=0.24.0",16    "pydantic>=2.5.0",17]18 19[project.optional-dependencies]20all = [21    "openenv-core>=0.1.0",22    "fastapi>=0.104.0",23    "uvicorn>=0.24.0",24    "pydantic>=2.5.0",25    "websockets>=12.0",26]27dev = [28    "pytest>=7.0",29    "httpx>=0.25.0",30]31 32[tool.setuptools.packages.find]33include = ["rl_qa_base*", "server*"]34