From db35a9a05e6f98f9cca45d2ae65ccb4562d64002 Mon Sep 17 00:00:00 2001 From: chris-colinsky Date: Mon, 11 May 2026 17:53:41 -0700 Subject: [PATCH] docs: README install section for v0.5.0 PyPI publish v0.5.0 shipped to real PyPI; swap the "Not yet on PyPI" note for the actual ``pip install openarmature`` command plus an ``openarmature[otel]`` line for the OpenTelemetry extras. Keeps the editable-local instructions as the fallback for downstream-development workflows. --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e67de791..74064c70 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,12 @@ Python reference implementation of [OpenArmature](https://github.com/LunarComman ## Install -Not yet on PyPI. For local use, install from a checkout: +```bash +pip install openarmature # core +pip install 'openarmature[otel]' # with OpenTelemetry observability +``` + +Or for editable local development: ```bash uv add --editable /path/to/openarmature-python