mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 19:24:16 +02:00
- Native runtime under bearhub/ (api, commons, gems, view/util, view/core, view/qt) - bauh/ compatibility re-export shims for legacy imports - Phase D: canonical __version__/__app_name__ in bearhub/__init__.py; pyproject.toml and setup.py point at bearhub package - Native gem loader at bearhub/view/core/gems.py - Namespace compatibility tests (159 tests passing) - Documentation: CHANGELOG [Unreleased], NAMESPACE_MIGRATION, ROADMAP, README, CONTRIBUTING, docs/qt6-migration.md, packaging/aur/README.md
8 lines
209 B
Python
8 lines
209 B
Python
"""
|
|
Legacy namespace compatibility shim.
|
|
|
|
Deprecated: import from `bearhub` instead of `bauh`.
|
|
"""
|
|
from bearhub import ROOT_DIR, __app_name__, __version__
|
|
|
|
__all__ = ["__app_name__", "__version__", "ROOT_DIR"] |