From 4a4a0fcc05eca52d0972a97affed48e0588013d4 Mon Sep 17 00:00:00 2001 From: woksin Date: Fri, 28 Aug 2026 00:45:46 +0200 Subject: [PATCH] docs: frame the Python client within the Chronicle client family and extend package keywords --- README.md | 8 ++++++-- pyproject.toml | 12 +++++++++++- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1678f22..b2c6021 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,12 @@ [![Build](https://github.com/Cratis/Chronicle.Python/actions/workflows/build.yml/badge.svg)](https://github.com/Cratis/Chronicle.Python/actions/workflows/build.yml) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) -This repository is the experimental Python client for [Cratis Chronicle](https://github.com/Cratis/Chronicle). -It is being established as an idiomatic, async-first layer over Chronicle's generated gRPC contracts. +This repository is the experimental Python client for [Cratis Chronicle](https://github.com/Cratis/Chronicle), +the open-source (MIT) event-sourcing database and processing runtime — an event store for building event-sourced +and CQRS applications. It is being established as an idiomatic, async-first layer over Chronicle's generated gRPC +contracts. Python joins the existing [.NET](https://github.com/Cratis/Chronicle), +[TypeScript](https://github.com/Cratis/Chronicle.TypeScript), [Kotlin/Java](https://github.com/Cratis/Chronicle.Kotlin), +and [Elixir](https://github.com/Cratis/Chronicle.Elixir) Chronicle clients. > [!IMPORTANT] > The client is in its initial implementation stage. No package has been published, and no compatibility, diff --git a/pyproject.toml b/pyproject.toml index 67ff7fe..dcc2b2b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,17 @@ requires-python = ">=3.10" license = "MIT" license-files = ["LICENSE"] authors = [{ name = "Cratis", email = "post@cratis.io" }] -keywords = ["chronicle", "event-sourcing", "grpc"] +keywords = [ + "chronicle", + "cratis", + "event-sourcing", + "eventsourcing", + "event-store", + "cqrs", + "ddd", + "grpc", + "async", +] classifiers = [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers",