generated from nvdaaddons/AddonTemplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
69 lines (63 loc) · 1.46 KB
/
pyproject.toml
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
[project]
name = "RDAccess"
description = "Allows using speech and braille with Microsoft Remote Desktop, Citrix Workspace and VMware Horizon"
maintainers = [
{name = "Leonard de Ruijter", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Accessibility",
]
readme = "readme.md"
license = {file = "copying.txt"}
requires-python = ">=3.11"
[project.urls]
Repository = "https://github.com/LeonarddeR/RDAccess.git"
Issues = "https://github.com/LeonarddeR/RDAccess.git/issues"
[tool.ruff]
fix = true
line-length = 110
builtins = [
# translation lookup
"_",
# translation lookup
"ngettext",
# translation lookup
"pgettext",
# translation lookup
"npgettext",
]
src = ["addon"]
exclude = [
".git",
"__pycache__",
]
[tool.ruff.format]
indent-style = "tab"
line-ending = "lf"
quote-style = "double"
[tool.ruff.lint.mccabe]
max-complexity = 15
[tool.ruff.lint]
ignore = [
# indentation contains tabs
"W191",
]
logger-objects = ["logHandler.log"]
select = [
"A", # flake8-builtins
"ARG", # flake8-unused-arguments
"B", # flake8-bugbear
"C90", # mccabe
"E", # pycodestyle Error
"F", # Pyflakes
"FIX", # flake8-fixme
"I", # isort
"INT", # flake8-gettext
"UP", # pyupgrade
"W", # pycodestyle Warning
]