-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Improved reporting of supplier information
- Loading branch information
1 parent
e4b3b07
commit 770dee2
Showing
7 changed files
with
54 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2022 Anthony Harrison | ||
# Copyright (C) 2023 Anthony Harrison | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
VERSION: str = "0.4.0" | ||
VERSION: str = "0.5.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
from setuptools import find_packages, setup | ||
|
||
# Copyright (C) 2023 Anthony Harrison | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
from sbom4python.version import VERSION | ||
|
||
with open("README.md", encoding="utf-8") as f: | ||
|
@@ -19,7 +22,7 @@ | |
author_email='[email protected]', | ||
maintainer='Anthony Harrison', | ||
maintainer_email='[email protected]', | ||
license='Apache_2.0', | ||
license='Apache-2.0', | ||
keywords=["security", "tools", "SBOM", "DevSecOps", "SPDX", "CycloneDX"], | ||
install_requires=requirements, | ||
classifiers=[ | ||
|