Spaces:
Sleeping
Sleeping
Update pyproject.toml
Browse files- pyproject.toml +14 -9
pyproject.toml
CHANGED
|
@@ -1,9 +1,14 @@
|
|
| 1 |
-
[project]
|
| 2 |
-
name = "soc-analyst-simulator"
|
| 3 |
-
version = "1.0.0"
|
| 4 |
-
description = "Automated SOC Analyst: Incident Response"
|
| 5 |
-
dependencies = [
|
| 6 |
-
"fastapi",
|
| 7 |
-
"uvicorn",
|
| 8 |
-
"pydantic"
|
| 9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "soc-analyst-simulator"
|
| 3 |
+
version = "1.0.0"
|
| 4 |
+
description = "Automated SOC Analyst: Incident Response"
|
| 5 |
+
dependencies = [
|
| 6 |
+
"fastapi",
|
| 7 |
+
"uvicorn",
|
| 8 |
+
"pydantic",
|
| 9 |
+
"openai",
|
| 10 |
+
"openenv-core>=0.2.0"
|
| 11 |
+
]
|
| 12 |
+
|
| 13 |
+
[project.scripts]
|
| 14 |
+
server = "server.app:main"
|