Spaces:
Sleeping
Sleeping
File size: 547 Bytes
673a52e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | """
OpenBioMed package (vendored)
=============================
This repository vendors an upstream OpenBioMed codebase. For BioFlow, OpenBioMed
is treated as an optional dependency: BioFlow must remain importable even when
some heavy optional dependencies (e.g., `scanpy`) are not installed.
To avoid import-time failures, this package intentionally does not `import *`
from all submodules at import time. Import the specific subpackages you need:
- `open_biomed.core.*`
- `open_biomed.data.*`
- `open_biomed.models.*`
"""
__all__ = []
|