Spaces:
Sleeping
Sleeping
Update pyproject.toml
Browse files- pyproject.toml +20 -24
pyproject.toml
CHANGED
|
@@ -1,25 +1,21 @@
|
|
| 1 |
-
[project]
|
| 2 |
-
name = "disaster_grid"
|
| 3 |
-
version = "0.1.0"
|
| 4 |
-
dependencies = [
|
| 5 |
-
"openenv-core",
|
| 6 |
-
"fastapi",
|
| 7 |
-
"uvicorn",
|
| 8 |
-
"pydantic",
|
| 9 |
-
"rich",
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
[
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
[tool.setuptools]
|
| 22 |
-
package-dir = {"" = "src"}
|
| 23 |
-
|
| 24 |
-
[tool.setuptools.packages.find]
|
| 25 |
where = ["src"]
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "disaster_grid"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
dependencies = [
|
| 5 |
+
"openenv-core",
|
| 6 |
+
"fastapi",
|
| 7 |
+
"uvicorn",
|
| 8 |
+
"pydantic",
|
| 9 |
+
"rich",
|
| 10 |
+
"streamlit", # Added: Required for the dashboard
|
| 11 |
+
]
|
| 12 |
+
|
| 13 |
+
[build-system]
|
| 14 |
+
requires = ["setuptools", "wheel"]
|
| 15 |
+
build-backend = "setuptools.build_meta"
|
| 16 |
+
|
| 17 |
+
[tool.setuptools]
|
| 18 |
+
package-dir = {"" = "src"}
|
| 19 |
+
|
| 20 |
+
[tool.setuptools.packages.find]
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
where = ["src"]
|