-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
89 lines (72 loc) · 1.64 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
77
78
79
80
81
82
83
84
85
86
87
88
89
[tool.poetry]
name = "rp-turn"
version = "7.1.0"
description = "Pexip Reverse Proxy and Turn Server installwizard"
authors = ["Pexip R&D <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
packages = [{ include = "rp_turn", from = "src" }]
include = ["LICENSE"]
exclude = [
"**/tests/**/*"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.8.0,<4.0"
passlib = "^1.7.4"
Jinja2 = "^3.1.5"
PyYAML = "^6.0"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
isort = "^5.13.2"
mypy = "^1.14.1"
mypy-extensions = "^1.0.0"
pytest = "^8.3.4"
coverage = "^7.6.1"
pylint = "^3.2.7"
types-passlib = "^1.7.7.20241221"
types-PyYAML = "^6.0.12.20241230"
yarl = "^1.15.2"
invoke = "^2.2.0"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/pexip/rp-turn/issues"
[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311']
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
[tool.pylint.MASTER]
jobs = 0
persistent = true
suggestion-mode = true
disable = """
fixme,
duplicate-code,
"""
[tool.pylint.FORMAT]
max-line-length = 120
[tool.pylint.DESIGN]
max-args = 8
max-attributes = 10
[tool.mypy]
cache_dir = ".cache/mypy"
no_incremental = true
ignore_missing_imports = false
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_return_any = true
warn_unreachable = true
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = "*.tests.*"
ignore_errors = true
[tool.pytest.ini_options]
cache_dir = ".cache/pytest"