-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (71 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
79 lines (71 loc) · 1.63 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
[project]
name = "dnstapir"
version = "1.5.1"
description = "DNS TAPIR Python Library"
authors = [{name="Jakob Schlyter", email = "jakob@kirei.se"}]
readme = "README.md"
requires-python = ">=3.13,<4.0"
dependencies = [
"structlog>=25.2.0"
]
[project.urls]
repository = "https://github.com/dnstapir/python-dnstapir.git"
[project.optional-dependencies]
keymanager = [
"cryptography>=44.0.2",
"httpx>=0.28.1",
"jwcrypto>=1.5.6",
"opentelemetry-api>=1.31.0",
"pydantic>=2.10.6",
"pymongo>=4.11.3",
"redis>=5.2.1",
"ttlru-map>=1.1.0",
]
opentelemetry = [
"botocore>=1.36.1",
"fastapi>=0.115.11",
"opentelemetry-api>=1.31.0",
"opentelemetry-exporter-otlp>=1.31.0",
"opentelemetry-instrumentation-botocore>=0.52b0",
"opentelemetry-instrumentation-fastapi>=0.52b0",
"opentelemetry-instrumentation-pymongo>=0.52b0",
"opentelemetry-instrumentation-redis>=0.52b0",
]
[dependency-groups]
dev = [
"dnstapir[keymanager,opentelemetry]",
"aiobotocore>=2.19.0",
"fakeredis>=2.27.0",
"pytest>=8.3.5",
"pytest-httpx>=0.35.0",
"pytest-ruff>=0.4.1",
"ruff>=0.11.0",
"uvicorn>=0.34.0",
]
[tool.setuptools]
packages = [ "dnstapir" ]
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = ["E501", "I001"]
[tool.ruff.lint.isort]
force-sort-within-sections = false
combine-as-imports = true
split-on-trailing-comma = false