Add initial SBOM library implementation
Add implementation of standard-agnostic model for SBOM, and simple SPDX v2.3 model. Also add convenience functions for converting DNF4 package set to the standard-agnostic model and for converting it to SPDX model. Cover the functionality with unit tests. Signed-off-by: Tomáš Hozza <thozza@redhat.com>
This commit is contained in:
parent
75b6fb4abe
commit
0b68f8123b
11 changed files with 1436 additions and 1 deletions
9
setup.py
9
setup.py
|
|
@ -4,7 +4,14 @@ setuptools.setup(
|
|||
name="osbuild",
|
||||
version="129",
|
||||
description="A build system for OS images",
|
||||
packages=["osbuild", "osbuild.formats", "osbuild.util","osbuild.solver"],
|
||||
packages=[
|
||||
"osbuild",
|
||||
"osbuild.formats",
|
||||
"osbuild.solver",
|
||||
"osbuild.util",
|
||||
"osbuild.util.sbom",
|
||||
"osbuild.util.sbom.spdx2",
|
||||
],
|
||||
license='Apache-2.0',
|
||||
install_requires=[
|
||||
"jsonschema",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue