-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
152 lines (124 loc) · 3.72 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
[project]
name = "mopidy-mpd"
description = "Mopidy extension for controlling Mopidy from MPD clients"
readme = "README.md"
requires-python = ">= 3.11"
license = { text = "Apache-2.0" }
authors = [{ name = "Stein Magnus Jodal", email = "[email protected]" }]
classifiers = [
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio :: Players",
]
dynamic = ["version"]
dependencies = ["mopidy >= 4.0.0a4", "pygobject >= 3.42", "pykka >= 4"]
[project.urls]
Homepage = "https://github.com/mopidy/mopidy-mpd"
[project.entry-points."mopidy.ext"]
mpd = "mopidy_mpd:Extension"
[build-system]
requires = ["setuptools >= 66", "setuptools-scm >= 7.1"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"tox",
{ include-group = "ruff" },
{ include-group = "tests" },
{ include-group = "typing" },
]
ruff = ["ruff"]
tests = ["pytest", "pytest-cov"]
typing = ["pyright"]
[tool.coverage.paths]
source = ["src/", "*/site-packages/"]
[tool.coverage.run]
source_pkgs = ["mopidy_mpd"]
[tool.coverage.report]
show_missing = true
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "standard"
# Not all dependencies have type hints:
reportMissingTypeStubs = false
# Already covered by ruff's flake8-self checks:
reportPrivateImportUsage = false
[tool.pytest.ini_options]
filterwarnings = [
# By default, fail tests on warnings from our own code
"error:::mopidy_mpd",
#
# Add any warnings you want to ignore here
]
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"A005", # stdlib-module-shadowing
"ANN401", # any-type
"D", # pydocstyle
"D203", # one-blank-line-before-class
"D213", # multi-line-summary-second-line
"EM101", # raw-string-in-exception # TODO
"EM102", # f-string-in-exception # TODO
"FIX001", # line-contains-fixme
"FIX002", # line-contains-todo
"G004", # logging-f-string
"S101", # assert # TODO
"TD002", # missing-todo-author
"TD003", # missing-todo-link
"TD004", # missing-todo-colon # TODO
"TD005", # missing-todo-description # TODO
"TRY003", # raise-vanilla-args
#
# Conflicting with `ruff format`
"COM812", # missing-trailing-comma
"ISC001", # single-line-implicit-string-concatenation
]
[tool.ruff.lint.per-file-ignores]
"src/mopidy_mpd/protocol/*" = [
"ARG001", # unused-function-argument
]
"tests/*" = [
"ANN", # flake8-annotations
"ARG", # flake8-unused-arguments
"D", # pydocstyle
"FBT", # flake8-boolean-trap
"PLR0913", # too-many-arguments
"PLR2004", # magic-value-comparison
"PT027", # pytest-unittest-raises-assertion
"S101", # assert
"SLF001", # private-member-access
"TRY002", # raise-vanilla-class
]
[tool.setuptools.package-data]
"*" = ["*.conf"]
[tool.setuptools_scm]
# This section, even if empty, must be present for setuptools_scm to work
[tool.tox]
env_list = ["3.11", "3.12", "3.13", "pyright", "ruff-check", "ruff-format"]
[tool.tox.env_run_base]
package = "wheel"
wheel_build_env = ".pkg"
dependency_groups = ["tests"]
commands = [
[
"pytest",
"--cov",
"--basetemp={envtmpdir}",
{ replace = "posargs", extend = true },
],
]
[tool.tox.env.pyright]
dependency_groups = ["typing"]
commands = [["pyright", "{posargs:src}"]]
[tool.tox.env.ruff-check]
skip_install = true
dependency_groups = ["ruff"]
commands = [["ruff", "check", "{posargs:.}"]]
[tool.tox.env.ruff-format]
skip_install = true
dependency_groups = ["ruff"]
commands = [["ruff", "format", "--check", "{posargs:.}"]]