"""Smoke test: confirms the package is importable and pyproject is well-formed. Acts as the minimum-viable test that the project is set up correctly. Gets replaced with real tests as the chunks land. """ from __future__ import annotations def test_package_importable() -> None: import ix assert ix.__version__ == "0.1.0"