-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (72 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (72 loc) · 2.11 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chainvalidator"
version = "0.1.3"
description = "DNSSEC chain-of-trust validator – CLI utility and Python library"
readme = "README.md"
requires-python = ">=3.11"
license = "GPL-3.0"
license-files = ["LICENSE"]
authors = [{ name = "t0kubetsu" }]
keywords = [
"dns",
"dnssec",
"dnssec-validation",
"dnssec-validator",
"chain-of-trust",
"trust-anchor",
"dnskey",
"ds-record",
"rrsig",
"nsec",
"nsec3",
"domain-validation",
"dns-analysis",
"networking",
"security",
"cryptography",
"cli",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Internet :: Name Service (DNS) :: DNS Utilities",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: System :: Networking",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"dnspython[dnssec]>=2.6",
"requests>=2.31",
"rich>=13.7",
"typer>=0.12",
]
[project.urls]
Homepage = "https://github.com/NC3-TestingPlatform/chainvalidator"
Repository = "https://github.com/NC3-TestingPlatform/chainvalidator"
Issues = "https://github.com/NC3-TestingPlatform/chainvalidator/issues"
Changelog = "https://github.com/NC3-TestingPlatform/chainvalidator/blob/main/CHANGELOG.md"
[project.scripts]
chainvalidator = "chainvalidator.cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["chainvalidator*"]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov>=5", "pytest-mock>=3.12"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = "--cov=chainvalidator --cov-report=term-missing"