-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Arthit Suriyawongkul <[email protected]>
- Loading branch information
Showing
4 changed files
with
49 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,16 +6,16 @@ build-backend = "setuptools.build_meta" | |
name = "ntia_conformance_checker" | ||
version = "3.0.2" | ||
authors = [ | ||
{name = "Josh Lin", email = "[email protected]"}, | ||
{name = "John Speed Meyers", email = "[email protected]"} | ||
{ name = "Josh Lin", email = "[email protected]" }, | ||
{ name = "John Speed Meyers", email = "[email protected]" }, | ||
] | ||
maintainers = [ | ||
{name = "John Speed Meyers", email = "[email protected]"}, | ||
{name = "Gary O'Neall", email = "[email protected]"}, | ||
{name = "Josh Lin", email = "[email protected]"}, | ||
{name = "SPDX group at the Linux Foundation and others", email = "[email protected]"}, | ||
{ name = "John Speed Meyers", email = "[email protected]" }, | ||
{ name = "Gary O'Neall", email = "[email protected]" }, | ||
{ name = "Josh Lin", email = "[email protected]" }, | ||
{ name = "SPDX group at the Linux Foundation and others", email = "[email protected]" }, | ||
] | ||
license = {text = "Apache-2.0"} | ||
license = { text = "Apache-2.0" } | ||
description = "Check SPDX SBOM for NTIA minimum elements and common SBOM baseline attributes" | ||
readme = "README.md" | ||
classifiers = [ | ||
|
@@ -28,8 +28,11 @@ classifiers = [ | |
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Topic :: Security", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: System :: Systems Administration", | ||
] | ||
urls = {Homepage = "https://github.com/spdx/ntia-conformance-checker"} | ||
urls = { Homepage = "https://github.com/spdx/ntia-conformance-checker" } | ||
requires-python = ">=3.8" | ||
keywords = [ | ||
"spdx", | ||
|
@@ -49,13 +52,13 @@ dependencies = ["spdx-tools==0.8.3"] | |
[project.optional-dependencies] | ||
test = ["pytest"] | ||
|
||
[tool.setuptools] | ||
packages = ["ntia_conformance_checker"] | ||
|
||
[project.scripts] | ||
# Both "ntia-checker" and "sbomcheck" are identical. | ||
# "ntia-checker" is kept for backward compatibility. | ||
# While "sbomcheck" is introduced for a more generic name, | ||
# to accommodate other compliance standards. | ||
ntia-checker = "ntia_conformance_checker.main:main" | ||
sbomcheck = "ntia_conformance_checker.main:main" | ||
|
||
[tool.setuptools] | ||
packages = ["ntia_conformance_checker"] |