From e14b9ee12f475ffe2e365895ba4157a7099391a6 Mon Sep 17 00:00:00 2001 From: Tom Date: Mon, 3 Mar 2025 15:50:28 +0000 Subject: [PATCH] add extra reqs --- docs/quickstart.md | 5 +++++ pyproject.toml | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index e727476..b8bd255 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -9,9 +9,14 @@ jupytext: # Quickstart ## Installation +To install the latest stable release from PyPI (recommended): ```bash pip install qubed ``` +Or to build and install the latest version from github (requires cargo): +```bash +pip install qubed@git+https://github.com/ecmwf/qubed.git@main +``` ## Usage Make an uncompressed qube: diff --git a/pyproject.toml b/pyproject.toml index ee1585d..1be9809 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,9 +18,12 @@ requires-python = ">= 3.11" dynamic = ["version"] dependencies = [ "frozendict", - "rich", "numpy", + + # CLI + "rich", "click", + "psutil" ] # Because this is a mixed rust/python project the structure is src/python/qubed rather than the more typical src/qubed