__version__ = "0.1.0" def __getattr__(name): if name == "KindredSolver": from .solver import KindredSolver return KindredSolver raise AttributeError(f"module {__name__!r} has no attribute {name!r}") __all__ = ["KindredSolver"]