-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (66 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
71 lines (66 loc) · 1.78 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sbommage"
version = "1.0.2"
description = "Interactive terminal frontend for viewing Software Bill of Materials (SBOM) files"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Alan Pope", email = "alan@popey.com" },
]
keywords = ["sbom", "security", "supply-chain", "tui", "terminal"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
"Topic :: System :: Systems Administration",
"Topic :: Terminals",
"Topic :: Text Processing :: Markup :: XML",
]
dependencies = [
"textual>=0.85.0",
]
[project.urls]
Homepage = "https://github.com/popey/sbommage"
Repository = "https://github.com/popey/sbommage"
Issues = "https://github.com/popey/sbommage/issues"
Documentation = "https://github.com/popey/sbommage#readme"
[project.scripts]
sbommage = "sbommage:main"
[tool.hatch.build.targets.wheel]
packages = ["."]
include = [
"sbommage.py",
"README.md",
"LICENSE",
]
exclude = [
"*.pyc",
"__pycache__/",
"*.so",
"*.egg-info/",
".git/",
".github/",
"example_sboms/",
"*.json",
"*.gif",
"*.png",
"*.tape",
"*.txt",
"*.sh",
"test_*.py",
]