-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (80 loc) · 2.31 KB
/
pyproject.toml
File metadata and controls
86 lines (80 loc) · 2.31 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mailvalidator"
version = "0.1.8"
description = "Mail server configuration assessment CLI utility"
readme = "README.md"
requires-python = ">=3.11"
license = "GPL-3.0"
license-files = ["LICENSE"]
authors = [{ name = "t0kubetsu" }]
keywords = [
"email",
"email-security",
"mail",
"smtp",
"dns",
"dnsbl",
"spf",
"dmarc",
"dkim",
"bimi",
"mta-sts",
"tlsrpt",
"dane",
"tls",
"cybersecurity",
"security-audit",
"domain-analysis",
"networking",
"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 :: Communications :: Email",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Internet :: Name Service (DNS) :: DNS Utilities",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"dnspython>=2.6",
"rich>=13.7",
"typer>=0.12",
"aiohttp>=3.9",
"cryptography>=42",
"chainvalidator @ file:./vendor/chainvalidator",
"quantumvalidator @ file:./vendor/quantumvalidator",
]
[project.urls]
Homepage = "https://github.com/NC3-TestingPlatform/mailvalidator"
Repository = "https://github.com/NC3-TestingPlatform/mailvalidator"
Issues = "https://github.com/NC3-TestingPlatform/mailvalidator/issues"
Changelog = "https://github.com/NC3-TestingPlatform/mailvalidator/blob/main/CHANGELOG.md"
[project.scripts]
mailvalidator = "mailvalidator.cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["mailvalidator*"]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov>=5", "pytest-mock>=3.12"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = "--cov=mailvalidator --cov-report=term-missing"