rendervd 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
rendervd/__init__.py ADDED
@@ -0,0 +1,17 @@
1
+ """rendervd: DVD/ISO → MP4 pipeline.
2
+
3
+ This package is intentionally stdlib-only at runtime.
4
+ """
5
+
6
+ from __future__ import annotations
7
+
8
+ from importlib.metadata import PackageNotFoundError, version
9
+
10
+ __all__ = ["__version__"]
11
+
12
+ # Single source of truth is `project.version` in pyproject.toml.
13
+ # This runtime value is derived from installed package metadata.
14
+ try:
15
+ __version__ = version("rendervd")
16
+ except PackageNotFoundError: # pragma: no cover
17
+ __version__ = "0.1.0"