-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
158 lines (134 loc) · 3.9 KB
/
pyproject.toml
File metadata and controls
158 lines (134 loc) · 3.9 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
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
153
154
155
156
157
158
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=62.3"]
[project]
name = "sendspin"
# The version is set by GH action on release
authors = [
{ name = "Sendspin Protocol Authors", email = "sendspin@openhomefoundation.org" },
]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"aiosendspin~=4.4",
"aiosendspin-mpris~=2.1.1",
"av>=14.0.0",
"numpy>=1.24.0",
"pulsectl-asyncio>=1.2.2; platform_system == 'Linux'",
"qrcode>=8.0",
"readchar>=4.0.0",
"rich>=13.0.0",
"sounddevice>=0.4.6",
]
description = "Synchronized audio player for Sendspin servers"
license = { text = "Apache-2.0" }
readme = "README.md"
requires-python = ">=3.12"
version = "0.0.0"
[project.urls]
"Homepage" = "https://github.com/Sendspin-Protocol/sendspin"
"Bug Tracker" = "https://github.com/Sendspin-Protocol/sendspin/issues"
[project.scripts]
sendspin = "sendspin.cli:main"
[project.optional-dependencies]
cast = ["pychromecast>=14.0.0"]
test = [
"codespell==2.4.1",
"mypy==1.18.2",
"pre-commit==4.4.0",
"pre-commit-hooks==6.0.0",
"pytest>=8.4.2",
"ruff==0.14.5",
]
[tool.setuptools.packages.find]
include = ["sendspin*"]
[tool.setuptools.package-data]
"sendspin.serve" = ["web/*"]
[tool.codespell]
# ignore-words-list = ""
[tool.ruff]
fix = true
show-fixes = true
line-length = 100
target-version = "py312"
[tool.ruff.lint.pydocstyle]
# Use Google-style docstrings.
convention = "pep257"
[tool.ruff.lint.pylint]
max-args = 10
max-branches = 25
max-returns = 15
max-statements = 50
[tool.mypy]
platform = "linux"
python_version = "3.12"
follow_imports = "normal"
# suppress errors about unsatisfied imports
ignore_missing_imports = true
# be strict
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
enable_error_code = ["ignore-without-code", "redundant-self", "truthy-iterable"]
extra_checks = false
local_partial_types = true
no_implicit_optional = true
no_implicit_reexport = true
show_error_codes = true
strict_equality = true
strict_optional = true
warn_incomplete_stub = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
packages = ["sendspin"]
[tool.ruff.format]
# Force Linux/macOS line endings
line-ending = "lf"
[tool.ruff.lint]
ignore = [
"ANN002", # Just annoying, not really useful
"ANN003", # Just annoying, not really useful
"ANN401", # Opinioated warning on disallowing dynamically typed expressions
"D203", # Conflicts with other rules
"D213", # Conflicts with other rules
"D417", # False positives in some occasions
"EM101", # Just annoying, not really useful
"EM102", # Just annoying, not really useful
"FIX002", # Just annoying, not really useful
"PLR2004", # Just annoying, not really useful
"PGH004", # Just annoying, not really useful
"PD011", # Just annoying, not really useful
"S101", # assert is often used to satisfy type checking
"TC001", # Just annoying, not really useful
"TC003", # Just annoying, not really useful
"TD002", # Just annoying, not really useful
"TD003", # Just annoying, not really useful
"TD004", # Just annoying, not really useful
"TRY003", # Just annoying, not really useful
"TRY400", # Just annoying, not really useful
"COM812", # Conflicts with the Ruff formatter
"S104", # Allow "0.0.0.0" address
]
[tool.ruff.lint.per-file-ignores]
"sendspin/cli.py" = ["T201"]
"sendspin/serve/__init__.py" = ["T201"]
"setup.py" = ["T201"]
select = ["ALL"]
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
[tool.ruff.lint.isort]
known-first-party = ["sendspin"]
[tool.ruff.lint.mccabe]
max-complexity = 25