Major changes are the support for ignition, that assembler results wont be automatically committed anymore, a new org.osbuild.copy stage, the removal of the `tree_id` & `output_id` as well as full manifest validation due to the addition of source schema validation.
17 lines
360 B
Python
17 lines
360 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="osbuild",
|
|
version="16",
|
|
description="A build system for OS images",
|
|
packages=["osbuild", "osbuild.util"],
|
|
license='Apache-2.0',
|
|
install_requires=[
|
|
"jsonschema",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"osbuild = osbuild.main_cli:main_cli"
|
|
]
|
|
},
|
|
)
|