debian-forge/setup.py
Christian Kellner 162797f206 NEWS.md: update for osbuild version 16
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.
2020-06-04 16:22:59 +02:00

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