debian-forge/osbuild/__init__.py
schutzbot 23c8bf3e8c Post release version bump
[skip ci]
2025-06-20 10:35:58 +00:00

20 lines
530 B
Python

"""OSBuild Module
The `osbuild` module provides access to the internal features of OSBuild. It
provides parsers for the input and output formats of osbuild, access to shared
infrastructure of osbuild stages, as well as a pipeline executor.
The utility module `osbuild.util` provides access to common functionality
independent of osbuild but used across the osbuild codebase.
"""
from .pipeline import Manifest, Pipeline, Stage
__version__ = "154"
__all__ = [
"Manifest",
"Pipeline",
"Stage",
"__version__",
]