This is necessary for the new simplified release process and is done ahead of time once for the upcoming release now. After osbuild 40 this will be done by the GitHub composite action.
20 lines
431 B
Python
20 lines
431 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="osbuild",
|
|
version="40",
|
|
description="A build system for OS images",
|
|
packages=["osbuild", "osbuild.formats", "osbuild.util"],
|
|
license='Apache-2.0',
|
|
install_requires=[
|
|
"jsonschema",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"osbuild = osbuild.main_cli:osbuild_cli"
|
|
]
|
|
},
|
|
scripts=[
|
|
"tools/osbuild-mpp"
|
|
],
|
|
)
|