CoolFace
Apppublic

Pruthvi1762/cloud-devops-openenv

sourceHugging Facemitupdated 6mo agoView on Hugging Face
0likes
pyproject.toml30 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=61.0"]3build-backend = "setuptools.build_meta"4 5[project]6name = "cloud-incident-responder"7version = "0.1.0"8authors = [9  { name="Pruthviraj Vinod Phuse", email="phusepruthvi@gmail.com" },10]11description = "A cloud systems incident responder environment for OpenEnv"12readme = "README.md"13requires-python = ">=3.10"14dependencies = [15    "openenv-core>=0.2.0",16    "fastapi",17    "uvicorn",18    "pydantic",19    "openai",20    "python-multipart",21    "requests"22]23 24[project.scripts]25server = "server.app:main"26 27[tool.setuptools.packages.find]28where = ["."]29include = ["server*"]30