-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
182 lines (166 loc) · 4.63 KB
/
pyproject.toml
File metadata and controls
182 lines (166 loc) · 4.63 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
[project]
name = "dppvalidator"
version = "0.3.2"
description = "Python library for validating Digital Product Passports (DPP) according to EU ESPR regulations and CIRPASS/UNECE ontologies"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "artiso-ai" }]
keywords = [
"dpp",
"digital-product-passport",
"espr",
"cirpass",
"validation",
"pydantic",
"eu-regulation",
"sustainability",
"circular-economy",
"textile",
"battery-passport",
"untp",
"verifiable-credentials",
"json-ld",
"w3c",
"supply-chain",
"traceability",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Pydantic :: 2",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Typing :: Typed",
]
dependencies = [
"pydantic>=2.12.5",
"httpx>=0.28.0",
"jsonschema>=4.23.0",
"pyld>=2.0.4",
"cryptography>=43.0.0",
"PyJWT>=2.9.0",
"base58>=2.1.0",
]
[project.scripts]
dppvalidator = "dppvalidator.cli:cli"
dppvalidator-precommit = "dppvalidator.cli.commands.precommit:main"
[project.optional-dependencies]
cli = ["rich>=13.0.0"]
rdf = ["rdflib>=7.0.0", "pyshacl>=0.25.0"]
all = ["dppvalidator[cli,rdf]"]
[project.urls]
Homepage = "https://github.com/artiso-ai/dppvalidator"
Repository = "https://github.com/artiso-ai/dppvalidator"
Documentation = "https://artiso-ai.github.io/dppvalidator/"
Changelog = "https://github.com/artiso-ai/dppvalidator/blob/main/CHANGELOG.md"
Issues = "https://github.com/artiso-ai/dppvalidator/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/dppvalidator"]
[tool.hatch.build.targets.wheel.sources]
"src" = ""
[tool.hatch.build]
include = [
"src/dppvalidator/**/*.py",
"src/dppvalidator/**/*.json",
"src/dppvalidator/**/*.ttl",
"src/dppvalidator/**/*.xsd",
"src/dppvalidator/**/*.yaml",
]
[dependency-groups]
dev = [
# Testing
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.24.0",
"hypothesis>=6.100.0",
"mutmut>=3.0.0",
# Linting & Type Checking
"ruff>=0.8.0",
"ty>=0.0.1a0",
"pre-commit>=3.6.0",
# Security & License Scanning
"pip-audit>=2.7.0",
"pip-licenses>=5.0.0",
# SBOM Generation
"cyclonedx-bom>=7.0.0",
# Optional extras (include all for dev)
"rich>=13.0.0",
"rdflib>=7.0.0",
"pyshacl>=0.25.0",
]
docs = [
"mkdocs>=1.6.0",
"mkdocs-material[imaging]>=9.5.0",
"mkdocstrings[python]>=0.27.0",
]
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
"ARG", # flake8-unused-arguments
"SIM", # flake8-simplify
]
ignore = [
"E501", # line too long (handled by formatter)
]
[tool.ruff.lint.isort]
known-first-party = ["dppvalidator"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
filterwarnings = [
# rdflib internal deprecations (waiting for upstream fixes)
"ignore:ConjunctiveGraph is deprecated:DeprecationWarning:rdflib.plugins.parsers.jsonld",
"ignore::DeprecationWarning:rdflib.*",
"ignore::DeprecationWarning:pyparsing.*",
]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.coverage.run]
source = ["src/dppvalidator"]
branch = true
[tool.coverage.report]
fail_under = 90
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"raise NotImplementedError",
"\\.\\.\\.", # Protocol stubs
]
omit = [
"*/protocols.py", # Protocol definitions are abstract stubs
]
[tool.mutmut]
paths_to_mutate = ["src/dppvalidator/validators/"]
tests_dir = "tests/unit/"
runner = "uv run pytest tests/unit/ -x --tb=no -q"