File: pyproject.toml

package info (click to toggle)
python-pyhanko-certvalidator 0.30.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,088 kB
  • sloc: python: 10,014; sh: 58; makefile: 4
file content (91 lines) | stat: -rw-r--r-- 2,249 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=80.8.0"]
build-backend = "setuptools.build_meta"

[project]
name = "pyhanko-certvalidator"
authors = [{name = "Matthias Valvekens", email = "dev@mvalvekens.be"}]
license = "MIT"
license-files = ["LICENSE"]
description = "Validates X.509 certificates and paths; forked from wbond/certvalidator"
keywords = [
    "crypto",
    "pki",
    "x509",
    "certificate",
    "crl",
    "ocsp",
]
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Developers",
    "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 :: Security :: Cryptography",
]
requires-python = ">=3.10"
dependencies = [
    "asn1crypto>=1.5.1",
    "oscrypto>=1.1.0",
    "cryptography>=41.0.5",
    "uritools>=3.0.1",
    "requests>=2.31.0",
]
version = "0.30.1"


[project.readme]
file = "README.md"
content-type = "text/markdown"

[project.urls]
Homepage = "https://github.com/MatthiasValvekens/pyHanko/tree/master/pkgs/pyhanko-certvalidator"

[project.optional-dependencies]
async-http = ["aiohttp>=3.9,<3.14"]

[dependency-groups]
testing-base = [
    "pytest>=6.1.1",
    "pytest-cov>=4.0,<7.1",
    "freezegun>=1.1.0",
    "aiohttp>=3.9,<3.14",
    "pytest-aiohttp>=1.0.4,<1.2.0",
    "aiohttp>=3.9,<3.14",
]

[tool.setuptools]
include-package-data = false

[tool.setuptools.package-data]
pyhanko_certvalidator = ["py.typed"]

[tool.mypy]
files = 'pyhanko_certvalidator'

[[tool.mypy.overrides]]
module = [
    "asn1crypto.*",
    "pkcs11.*",
    "oscrypto.*",
    "uritools.*",
]
ignore_missing_imports = true

[tool.pytest.ini_options]
log_format = "%(asctime)s %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
log_cli = true
log_cli_level = "INFO"
testpaths = "tests"
asyncio_mode = "strict"
norecursedirs = "tests/legacy_live_tests"
asyncio_default_fixture_loop_scope="function"

[tool.coverage.report]
exclude_lines = ["pragma: no cover", "pragma: nocover", "raise AssertionError", "raise NotImplementedError", "TYPE_CHECKING", "^\\s*\\.\\.\\."]
precision = 2