udb 0.2.1

Universal Data Broker — a Rust gRPC broker over multiple databases (Postgres, MySQL, SQLite, MongoDB, ClickHouse, Cassandra, MSSQL, Redis, Qdrant, S3, Neo4j, …) with per-tenant RLS, 2PC, sagas, and CDC.
Documentation
[project]
name = "udb-python-acme-billing-example"
version = "0.1.0"
description = "Standalone Python example for the UDB SDK"
requires-python = ">=3.10"
dependencies = [
  "pydantic>=2.7,<3",
  "udb-client>=0.1.4",
]

[project.optional-dependencies]
dev = [
  "grpcio-tools>=1.80",
  "pyrefly>=1",
  "pytest>=9",
]

[tool.uv]
package = false

[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"

[tool.pyrefly]
project-includes = ["acme_billing.py", "tests"]
project-excludes = ["gen"]
python-version = "3.12"
search-path = ["."]