Fix: Add missing pyproject.toml for OpenEnv multi-mode deployment
Browse files- pyproject.toml +20 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=61.0"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "devops-incident-response"
|
| 7 |
+
version = "1.0.0"
|
| 8 |
+
description = "DevOps Incident Response OpenEnv"
|
| 9 |
+
authors = [
|
| 10 |
+
{ name = "devops-incident-env" }
|
| 11 |
+
]
|
| 12 |
+
requires-python = ">=3.9"
|
| 13 |
+
dependencies = [
|
| 14 |
+
"pydantic>=2.0,<3.0",
|
| 15 |
+
"fastapi>=0.110.0",
|
| 16 |
+
"uvicorn>=0.29.0",
|
| 17 |
+
"openai>=1.0.0",
|
| 18 |
+
"python-dotenv>=1.0.0",
|
| 19 |
+
"pyyaml>=6.0"
|
| 20 |
+
]
|