-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (77 loc) · 1.99 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (77 loc) · 1.99 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
[project]
name = "os-normalizer"
version = "0.5.1"
description = "Normalize raw OS strings/metadata into structured data (family, product, version, arch)."
readme = "README.md"
requires-python = ">=3.11"
dependencies = []
license = { file = "LICENSE" }
keywords = ["os", "normalize", "cpe", "fingerprint", "parsing"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Operating System",
]
[project.urls]
Homepage = "https://github.com/johnscillieri/os-normalizer"
Repository = "https://github.com/johnscillieri/os-normalizer"
Issues = "https://github.com/johnscillieri/os-normalizer/issues"
Changelog = "https://github.com/johnscillieri/os-normalizer/releases"
[dependency-groups]
dev = [
"ipython>=9.5.0",
"nox>=2025.5.1",
"nox-uv>=0.6.2",
"pytest>=8.4.2",
"ruff>=0.12.10",
]
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint]
select = [
"ALL", # include all the rules, including new ones
]
ignore = [
"D203",
"D213",
"D400",
"D415",
"S101",
"T201",
"COM812",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
".nox",
".ruff_cache",
".pytest_cache",
".venv",
"noxfile.py",
"uv.lock",
"os_normalizer.egg-info",
"tests",
]
# pyproject.toml
[tool.uv-ship]
release-branch = "main"
tag-prefix = "v"
allow-dirty = false
changelog-path = "CHANGELOG.md"
changelog-template = "- {message} [{hash}]"
unreleased-tag = "Unreleased"