_version.py python
10 lines 346 B
Raw
sha256:cf6265cea8c21d9228d90dec13ef6ec2dab5103d466db9cc4590681832de4bf8 docs(KD-STAGING): sync governance after KD-6b DONE Human 13 days ago
1 """Single source of truth for the Muse package version.
2
3 All schema_version fields across the codebase read from here rather than
4 hardcoding a number. The version itself lives in ``pyproject.toml`` and is
5 injected into the installed package metadata at build time.
6 """
7
8 from importlib.metadata import version
9
10 __version__: str = version("muse")
File History 1 commit
sha256:cf6265cea8c21d9228d90dec13ef6ec2dab5103d466db9cc4590681832de4bf8 docs(KD-STAGING): sync governance after KD-6b DONE Human 13 days ago