When I open a notebook I pretty much always want to have jupyterlab-vim and jupyterlab-code-formatter available to me. But these are purely for developer experience, no one I will then send the notebook too would need these installed. Is there an easy way to mark them as separate but still easily accesible to me? Almost like an extra dep for UI
something like:
juv run notebook.ipynb --with ui-deps
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "requests<3",
# "rich",
# ]
# jupyterlab-ui = [
# "jupyterlab-vim",
# ]
# ///