Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 16 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# The DLML Explorer and all its dependencies are defined by the packaged
# `explorer` extra in pyproject.toml -- there is no separate dependency list to
# keep in sync. This one line installs the app from a checkout (e.g. Streamlit
# Community Cloud, which reads this file and should point its main file at
# src/dlml/web/app.py). After the package is published to PyPI this can become
# `simcenter-dlml[explorer]`.
# Streamlit Community Cloud installs this file (point the app's main file at
# src/dlml/web/app.py). We install the dlml package EDITABLE (`-e .`) so the
# deployed app tracks the repo checkout — a UI change is picked up by
# redeploying the branch, with no PyPI release needed — and `-e .` also pulls
# the core deps (pandas / numpy / jsonschema).
#
# Note: `[explorer]` pulls onnxruntime (via fastembed), so it targets Python
# >=3.10.
.[explorer]
# The web (`explorer`) dependencies are listed explicitly below rather than via
# `.[explorer]`: on Cloud, pip installed the package but did NOT pull the extras
# requested against the local path, so the app crashed on `import scipy`.
# Keep this list in sync with the `explorer` extra in pyproject.toml.
# (`qdrant-client[fastembed]` pulls onnxruntime, so this targets Python >=3.10.)
-e .
streamlit>=1.48.0
plotly
colorlover
scipy
qdrant-client[fastembed]>=1.14.0
Loading