scverse-backends 0.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ """Pluggable backend dispatch for scverse host libraries."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from scverse_backends._dispatcher import BackendDispatcher
6
+ from scverse_backends._settings import Settings
7
+
8
+ __all__ = ["BackendDispatcher", "Settings"]