-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (78 loc) · 1.72 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (78 loc) · 1.72 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
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hookwise"
version = "2.4.0"
description = "Enterprise webhook router and ConnectWise Manage bridge"
authors = [{name = "HookWise Team"}]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.14,<3.15"
dependencies = [
"flask",
"celery",
"redis",
"requests",
"flask-sqlalchemy",
"flask-migrate",
"flask-limiter",
"flask-socketio",
"flask-wtf",
"prometheus-client",
"cryptography",
"gevent",
"jsonpath-ng",
# Microsoft Entra ID (OpenID Connect); ohne das Paket bleibt der
# Entra-Login inaktiv, die lokale Anmeldung laeuft unveraendert.
"msal",
"psycopg2-binary",
"pyotp",
"python-dotenv",
"regex",
"gunicorn",
"segno"
]
[dependency-groups]
dev = [
"mypy==2.1.0",
"pip-audit",
"pytest==9.1.1",
"ruff==0.16.5",
"types-requests==2.33.0.20260712",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["hookwise*"]
[tool.ruff]
line-length = 120
target-version = "py314"
[tool.ruff.lint]
select = ["E", "F", "B", "I"]
ignore = []
[tool.mypy]
python_version = "3.14"
strict = true
ignore_missing_imports = true
exclude = ["tests/", "migrations/"]
[[tool.mypy.overrides]]
module = [
"flask.*",
"celery.*",
"prometheus_client.*",
"redis.*",
"werkzeug.*",
"dotenv.*",
"flask_sqlalchemy.*"
]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
filterwarnings = ["ignore::DeprecationWarning"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"