forked from siemens/debsbom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (85 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
92 lines (85 loc) · 1.79 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "debsbom"
version = "0.5.1"
dependencies = [
"packageurl-python>=0.16.0",
"python-debian>=0.1.49",
]
requires-python = ">=3.11"
authors = [
{ name="Christoph Steiger", email="christoph.steiger@siemens.com" },
]
maintainers = [
{ name="Christoph Steiger", email="christoph.steiger@siemens.com" },
{ name="Felix Moessbauer", email="felix.moessbauer@siemens.com" },
]
description = "Generate SBOMs for Debian-based distributions."
readme = "README.md"
license = "MIT"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: System :: Operating System Kernels :: Linux" ,
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/siemens/debsbom"
Repository = "https://github.com/siemens/debsbom.git"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov>=6",
"black",
"beartype>=0.20",
"jsonschema>=3.2",
"lz4",
"debsbom[download]",
"debsbom[doc]",
"debsbom[cdx]",
"debsbom[spdx]",
]
cdx = [
"cyclonedx-python-lib>=9.0.0",
]
spdx = [
"spdx-tools>=0.8.3",
]
download = [
"requests>=2.25.1",
"zstandard>=0.20",
]
# only distributed in Debian (not pip).
# only needed to speedup apt parsing
apt = [
"python3-apt>=2.6.0",
]
# dependencies to build documentation
doc = [
"sphinx>=7",
"sphinx-rtd-theme>=2.0.0",
"sphinx-autodoc-typehints>=2.0.0",
"sphinx-argparse>=0.2.1",
]
[project.scripts]
debsbom = "debsbom.cli:main"
[tool.black]
line-length = 100
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]
markers = [
"online: tests requiring internet access",
]
filterwarnings = [
"error",
]
[tool.coverage.run]
source = [
"debsbom"
]