add extra reqs

This commit is contained in:
Tom 2025-03-03 15:50:28 +00:00
parent 48444cc3ce
commit e14b9ee12f
2 changed files with 9 additions and 1 deletions

View File

@ -9,9 +9,14 @@ jupytext:
# Quickstart # Quickstart
## Installation ## Installation
To install the latest stable release from PyPI (recommended):
```bash ```bash
pip install qubed 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 ## Usage
Make an uncompressed qube: Make an uncompressed qube:

View File

@ -18,9 +18,12 @@ requires-python = ">= 3.11"
dynamic = ["version"] dynamic = ["version"]
dependencies = [ dependencies = [
"frozendict", "frozendict",
"rich",
"numpy", "numpy",
# CLI
"rich",
"click", "click",
"psutil"
] ]
# Because this is a mixed rust/python project the structure is src/python/qubed rather than the more typical src/qubed # Because this is a mixed rust/python project the structure is src/python/qubed rather than the more typical src/qubed