-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 809 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 809 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
[project]
name = "iana-data"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"httpx>=0.28.1",
"pycountry==26.2.16",
"selectolax==0.4.7",
"tenacity==9.1.4",
]
[tool.uv]
package = true
required-version = ">=0.10"
[dependency-groups]
dev = [
"pydeps==3.0.2",
"pyright>=1.1.407",
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
"ruff>=0.15.10",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = [".git", ".tox", "dist", "*.egg"]
addopts = "--durations=20 --durations-min=1.0"
[tool.coverage.report]
precision = 0
show_missing = true
skip_covered = false
sort = "cover" # Sort by coverage % (lowest first) - valid: name, stmts, miss, cover
fail_under = 90 # Fail if overall coverage < 90%