-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) · 1.68 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
[project]
name = "pki-tools"
dynamic = ["version"]
description = "PKI tools for e.g. checking certificate CRL/OCSP revocation"
authors = [{ name = "Michal Sadowski", email = "misad90@gmail.com" }]
license = "MIT"
readme = "README.md"
requires-python = ">=3.10,<4.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Security :: Cryptography",
"Operating System :: OS Independent",
]
dependencies = [
"cryptography>=50.0.0,<51.0.0",
"loguru>=0.7.3,<0.8.0",
"pydantic>=2.13.4,<3.0.0",
"httpx>=0.28.1,<0.29.0",
"pyyaml>=6.0.3,<7.0.0",
"pytz>=2026.3.post1,<2027.0",
]
[project.urls]
Homepage = "https://github.com/fulder/pki-tools"
Repository = "https://github.com/fulder/pki-tools"
"Bug Tracker" = "https://github.com/fulder/pki-tools/issues"
[dependency-groups]
test = [
"pytest>=9.1.1,<10.0.0",
"pytest-mock>=3.15.1,<4.0.0",
"pytest-xdist>=3.8.0,<4.0.0",
"pytest-cov>=7.1.0,<8.0.0",
"smokeshow>=0.5.0,<0.6.0",
]
lint = ["ruff>=0.16.1,<0.16.3"]
docs = [
"mkdocstrings[python]>=1.0.6,<2.0.0",
"pymdown-extensions>=11.0.1,<12.0.0",
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["pki_tools"]
[tool.pytest.ini_options]
addopts = "--cov=pki_tools --cov-report term-missing --cov-report=html -v -n auto"
[tool.ruff]
line-length = 79
[tool.ruff.lint.per-file-ignores]
"./pki_tools/__init__.py" = ["F401"]
"./pki_tools/types/__init__.py" = ["F401"]
"./pki_tools/funcs/__init__.py" = ["F401"]
"./docs/examples/src/*" = ["E402"]