-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 995 Bytes
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 995 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mxmap"
version = "0.1.0"
description = "Interactive map showing where Swiss municipalities host their email"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"dnspython>=2.8.0",
"httpx>=0.28.1",
"loguru>=0.7.3",
"pydantic>=2.0",
"stamina>=25.2.0",
]
[project.scripts]
resolve-domains = "mail_sovereignty.cli:resolve_domains"
classify-providers = "mail_sovereignty.cli:classify_providers"
analyze = "mail_sovereignty.cli:analyze"
[tool.hatch.build.targets.wheel]
packages = ["src/mail_sovereignty"]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=6.0",
"pytest-asyncio>=0.25",
"respx>=0.22",
"ruff>=0.15.5",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.coverage.run]
source = ["mail_sovereignty"]
[tool.coverage.report]
show_missing = true
fail_under = 90
exclude_lines = [
"pragma: no cover",
]