Skip to content
Draft
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ requires-python = ">=3.11,<3.14"
dependencies = [
"click>=8.1.7",
"cryptography>=44.0.2",
"duckdb-engine>=0.13.6",
"duckdb>=1.1.1",
"email-validator>=2.3.0",
"faker>=36.1.1",
Expand Down
5 changes: 5 additions & 0 deletions src/matchbox/client/adapters/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Local (client-side) database adapter implementations."""

from matchbox.client.adapters.duckdb import MatchboxLocalDuckDB

__all__ = ["MatchboxLocalDuckDB"]
5 changes: 5 additions & 0 deletions src/matchbox/client/adapters/duckdb/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""DuckDB implementation of the local (client-side) Matchbox cluster store."""

from matchbox.client.adapters.duckdb.adapter import MatchboxLocalDuckDB

__all__ = ["MatchboxLocalDuckDB"]
Loading