-
Notifications
You must be signed in to change notification settings - Fork 79
/
pyproject.toml
76 lines (68 loc) · 1.59 KB
/
pyproject.toml
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
[build-system]
requires = [
"hatchling>=1.27.0",
]
build-backend = "hatchling.build"
[project]
name = "checkdmarc"
dynamic = [
"version",
]
description = "A Python module and command line parser for SPF and DMARC records"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Sean Whalen", email = "[email protected]" },
]
keywords = [
"DMARC",
"DNS",
"SPF",
"BIMI",
"MTA-STS"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Topic :: Security",
"Topic :: Communications :: Email",
]
dependencies = [
"dnspython>=2.0.0",
"cryptography>=41.0.7",
"pyopenssl>=24.2.1",
"pem>=23.1.0",
"expiringdict>=1.1.4",
"publicsuffixlist>=0.10.0",
"pyleri>=1.3.2",
"requests>=2.25.0",
"timeout-decorator>=0.4.1",
"xmltodict>=0.14.2",
]
[project.optional-dependencies]
build = [
"hatch>=1.14.0",
"myst-parser[linkify]",
"nose",
"pytest",
"pytest-cov",
"ruff",
"sphinx",
"sphinx_rtd_theme",
]
[project.scripts]
checkdmarc = "checkdmarc._cli:_main"
[project.urls]
Homepage = "https://github.com/domainaware/checkdmarc"
Documentation = "https://domainaware.github.io/checkdmarc/"
Issues = "https://github.com/domainaware/checkdmarc/issues"
Changelog = "https://github.com/domainaware/checkdmarc/blob/master/CHANGELOG.md"
[tool.hatch.version]
path = "checkdmarc/_constants.py"
[tool.hatch.build.targets.sdist]
include = [
"/checkdmarc",
]
[tool.hatch.build.targets.wheel]
packages = ["checkdmarc"]