-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (49 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
52 lines (49 loc) · 1.73 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
[project]
name = "siemens-standard-bom"
version = "4.2.0"
description = "Standard BOM Format Library"
keywords = ["sbom", "software-bill-of-materials", "cyclonedx", "cdx"]
authors = [
{ name = "Hakan Dilek", email = "hakan.dilek@siemens.com" },
{ name = "Thomas Jensen", email = "jensenthomas@siemens.com" },
{ name = "Leo Reinmann", email = "leo.reinmann@siemens.com" },
]
license = "MIT"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
urls = { homepage = "https://sbom.siemens.io/", repository = "https://github.com/siemens/standard-bom-python", "Bug Tracker" = "https://github.com/siemens/standard-bom-python/issues", documentation = "https://github.com/siemens/standard-bom-python/blob/main/README.md" }
requires-python = ">=3.10,<4.0"
dependencies = [
"python-dateutil (>=2.9.0.post0,<3.0.0)",
"cyclonedx-python-lib(>=11.6.0,<12.0.0)",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = true
packages = [
{ include = "siemens_standard_bom" },
{ include = "siemens_standard_bom/py.typed" },
]
[tool.poetry.group.dev.dependencies]
coverage = "7.13.5"
pytest = "9.0.3"
flake8 = "7.3.0"
deepdiff = "9.0.0"
mypy = "1.20.0"
types-python-dateutil = "2.9.0.20260408"
tox = "4.52.0"
sortedcontainers-stubs = "2.4.3"