debian-forge/osbuild/__init__.py
Christian Kellner 945914b195 osbuild: introduce Manifest class
The 'Manifest' class represents what to build and the necessary
sources to do so. For now thus it is just a combination of the
pipeline the source options.
2021-01-09 18:09:47 +01:00

19 lines
519 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 Assembler, Manifest, Pipeline, Stage
__all__ = [
"Assembler",
"Manifest",
"Pipeline",
"Stage",
]