-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (52 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
54 lines (52 loc) · 1.09 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
[project]
name = "ceacstatusbot"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"beautifulsoup4>=4.13.4",
"lxml>=5.4.0",
"numpy>=2.2.6",
"onnxruntime>=1.22.0",
"pillow>=11.2.1",
"python-dotenv>=1.1.1",
"pytz>=2025.2",
"requests>=2.32.3",
]
[tool.ruff]
line-length = 120
select = [
"ALL", # include all the rules, including new ones
]
ignore = [
#### modules
"ANN", # flake8-annotations
"COM", # flake8-commas
"C90", # mccabe complexity
"DJ", # django
"EXE", # flake8-executable
"T10", # debugger
"TID", # flake8-tidy-imports
#### specific rules
"D100", # ignore missing docs
"D101",
"D102",
"D103",
"D104",
"D105",
"D106",
"D107",
"D200",
"D205",
"D212",
"D400",
"D401",
"D415",
"E402", # false positives for local imports
"E501", # line too long
"TRY003", # external messages in exceptions are too verbose
"TD002",
"TD003",
"FIX002", # too verbose descriptions of todos
]