-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 741 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 741 Bytes
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
[project]
name = "control-audio"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.9.18"
dependencies = []
[tool.ruff]
indent-width = 4
line-length = 99
target-version = "py39"
[tool.ruff.lint]
select = [
"I", # Enables all import-sorting rules
"F401", # Module imported but unused
]
[tool.ruff.format]
indent-style = "space"
quote-style = "single"
[tool.mypy]
allow_redefinition = true
check_untyped_defs = true
disallow_untyped_defs = true
exclude_gitignore = true
ignore_missing_imports = true
python_version = "3.9"
strict = true
explicit_package_bases = true
[dependency-groups]
dev = [
"aqt==25.2",
"mypy>=1.14.1",
"pyqt6>=6.10.0",
"ruff>=0.14.7",
]