-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (52 loc) · 1.11 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
[tool.poetry]
name = "evrec"
version = "1.1.0.dev1"
description = "DNS TAPIR Event Receiver"
authors = ["Jakob Schlyter <[email protected]>"]
readme = "README.md"
[tool.poetry.scripts]
evrec_server = "evrec.server:main"
[tool.poetry.dependencies]
python = "^3.12"
dnstapir = {git = "https://github.com/dnstapir/python-dnstapir.git", rev = "v1.0.0"}
pydantic-settings = "^2.5.2"
aiomqtt = "^2.2.0"
jwcrypto = "^1.5.6"
jsonformatter = "^0.3.2"
jsonschema = {extras = ["format"], version = ">=4.22.0"}
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
ruff = ">=0.8.0"
pytest-ruff = "^0.4.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[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
known-first-party = [
"evrec",
"dnstapir"
]
extra-standard-library = [
"tomllib",
]
combine-as-imports = true
split-on-trailing-comma = false