-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
65 lines (57 loc) · 1.28 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
[project]
name = "trustshell"
version = "0.2.5"
description = "Command Line tool for Trustify"
readme = "README.md"
authors = [
{ email = "jason@jasonshepherd.net" }
]
requires-python = ">=3.12"
dependencies = [
"aiohttp>=3.13.3",
"anytree>=2.12.1",
"click>=8.2.1",
"httpx>=0.28.1",
"osidb-bindings>=4.12.0",
"packageurl-python>=0.16.0",
"parameterized>=0.9.0",
"pkce>=1.0.3",
"pyjwt>=2.10.1",
"pyyaml>=6.0",
"rich>=14.0.0",
"types-pyyaml>=6.0.12.20250809",
"univers>=30.12.1",
"urllib3>=2.6.3",
]
[project.scripts]
trust-purl = "trustshell.purl:search"
trust-products = "trustshell.products:search"
trust-prime = "trustshell.products:prime_cache"
trust-api = "trustshell.api:api"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.3.5",
]
lint = [
"mypy>=1.0.0",
"types-requests", # For httpx which may use requests-like interfaces
]
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
# For libraries without stubs, ignore missing imports
[[tool.mypy.overrides]]
module = [
"univers.*",
"anytree.*",
"osidb_bindings.*",
"pkce.*",
]
ignore_missing_imports = true
[tool.ruff]
line-length = 88