-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
62 lines (55 loc) · 1.18 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hookwise"
version = "0.1.0"
description = "A webhook management system"
authors = [{name = "Your Name", email = "your.email@example.com"}]
dependencies = [
"flask",
"celery",
"redis",
"requests",
"flask-sqlalchemy",
"flask-migrate",
"flask-limiter",
"flask-socketio",
"prometheus-client",
"cryptography",
"python-dotenv",
"gunicorn",
"segno"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["hookwise*"]
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "B", "I"]
ignore = []
[tool.mypy]
python_version = "3.13"
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_*"