-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (46 loc) · 1.15 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
[project]
name = "audio-manager"
version = "1.0.0"
description = "An audio manager for windows to manage and control audio levels for different applications."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"comtypes==1.4.10",
"pillow>=11.1.0",
"psutil>=7.0.0",
"pycaw==20240210",
"pyside6>=6.8.2.1",
"pystray>=0.19.5",
"typing-extensions>=4.12.2",
]
[dependency-groups]
dev = [
"basedpyright>=1.28.1",
"isort>=6.0.1",
"nuitka>=2.6.8",
"pre-commit>=4.2.0",
"ruff>=0.11.0",
]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
[tool.ruff]
line-length = 79
lint.extend-select = ["ANN"]
lint.ignore = ["ANN401"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
docstring-code-line-length = 72
[tool.basedpyright]
exclude = ["**/node_modules", "**/__pycache__", "**/.*", "test*.py"]
reportImportCycles = false
reportUnnecessaryIsInstance = false
reportImplicitStringConcatenation = false
reportUnusedCallResult = false
reportMissingTypeStubs = false
reportAssignmentType = false
reportRedeclaration = false
reportAny = false
reportExplicitAny = false