-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
69 lines (64 loc) · 2.35 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# SPDX-FileCopyrightText: 2024 SPDX contributors
# SPDX-FileType: SOURCE
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools>=61.2", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "ntia_conformance_checker"
version = "3.1.0"
authors = [
{ name = "Josh Lin", email = "[email protected]" },
{ name = "John Speed Meyers", email = "[email protected]" },
{ name = "Arthit Suriyawongkul", 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]" },
]
license = { text = "Apache-2.0" }
description = "Check SPDX SBOM for NTIA minimum elements and common SBOM baseline attributes"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"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" }
requires-python = ">=3.8"
keywords = [
"spdx",
"sbom",
"ntia",
"cisa",
"minimum elements",
"baseline attributes",
"software bill of materials",
"bill of materials",
"common SBOM",
"software package data exchange",
"software component transparency",
]
dependencies = ["spdx-tools==0.8.3"]
[project.optional-dependencies]
test = ["pytest"]
[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"]