Add streamlit dependency

This commit is contained in:
Tobias Hölzer 2025-11-07 16:21:16 +01:00
parent ccd40ace48
commit d498b1e752
2 changed files with 188 additions and 11 deletions

View file

@ -48,7 +48,9 @@ dependencies = [
"xarray>=2025.9.0",
"xdggs>=0.2.1",
"xvec>=0.5.1",
"zarr[remote]>=3.1.3", "geocube>=0.7.1,<0.8",
"zarr[remote]>=3.1.3",
"geocube>=0.7.1,<0.8",
"streamlit>=1.50.0,<2",
]
[project.scripts]
@ -96,6 +98,15 @@ cuda = "12"
entropice = { path = ".", editable = true }
[tool.pixi.tasks]
dashboard = { cmd = [
"streamlit",
"run",
"src/entropice/training_analysis_dashboard.py",
"--server.port",
"8501",
"--server.address",
"0.0.0.0",
] }
[tool.pixi.dependencies]
pytorch-gpu = ">=2.5.1,<3"