debian-forge/setup.py
Simon Steinbeiss 4ff59e2086 Bump version numbers ahead of release
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.
2021-10-19 11:21:54 +02:00

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"
],
)