CoolFace
Apppublic

dprajjwal/supportops-env

sourceHugging Facebsd-3-clauseupdated 6mo agoView on Hugging Face
0likes
pyproject.toml48 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=68", "wheel"]3build-backend = "setuptools.backends.legacy:build"4 5[project]6name = "supportops-env"7version = "1.0.0"8description = "OpenEnv-compliant customer support triage RL environment"9readme = "README.md"10requires-python = ">=3.10"11license = { text = "BSD-3-Clause" }12authors = [{ name = "SupportOps-Env Team" }]13keywords = ["reinforcement-learning", "openenv", "support", "nlp", "agent"]14classifiers = [15    "Programming Language :: Python :: 3",16    "License :: OSI Approved :: BSD Software License",17    "Operating System :: OS Independent",18]19 20dependencies = [21    # Server22    "fastapi>=0.104.0",23    "uvicorn>=0.24.0",24    "pydantic>=2.0.0",25    "python-multipart>=0.0.6",26    # Client / inference27    "httpx>=0.25.0",28    "openai>=1.0.0",29    # OpenEnv validation CLI (dev)30    "openenv-core>=0.2.0",31]32 33[project.optional-dependencies]34dev = [35    "pytest>=7.0",36    "pytest-asyncio>=0.21",37    "black",38    "ruff",39]40 41[tool.setuptools.packages.find]42where = ["."]43include = ["supportops_env*"]44 45[project.scripts]46server = "server.app:main"47 48