Installation¶
Paramiko-Cloud requires Python 3.10 or newer. Install the core package plus the extra for each cloud provider you plan to use.
python -m pip install "paramiko-cloud[aws]"
python -m pip install "paramiko-cloud[gcp]"
python -m pip install "paramiko-cloud[azure]"
Install all provider dependencies when you need more than one backend:
python -m pip install "paramiko-cloud[all]"
Provider Dependencies¶
The extras install the SDK used by each key wrapper:
Extra |
Provider SDK |
Key class |
|---|---|---|
|
|
|
|
|
|
|
|
|
Development Setup¶
The repository uses uv for local workflows:
git submodule update --init --recursive
uv sync --extra all --group dev --group docs
uv run python scripts/build_proto.py
Generated protobuf modules are required before running type checks, tests, or
building the API reference. The proto definitions live in the ssh-cert-proto
submodule and generated Python files are written to paramiko_cloud/protobuf.
Build the documentation locally with:
uv run sphinx-build -b html docs docs/_build/html
The project checks source code with:
uv run ruff check .
uv run ruff format . --check
uv run mypy paramiko_cloud
uv run pytest --cov=./ --cov-report=xml