-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
74 lines (65 loc) · 1.41 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
# SPDX-FileCopyrightText: 2025 BlueZoo developers
# SPDX-License-Identifier: GPL-2.0-only
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "bluezoo"
version = "1.0.2"
license = "GPL-2.0-only"
description = "A mock for the BlueZ D-Bus API"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Mocking",
]
dependencies = [
"pyventus>=0.7.0",
"pyparsing>=3.0.0",
"sdbus>=0.14.1",
"structlog>=20.1.0",
]
[project.urls]
Homepage = "https://github.com/Samsung/BlueZoo"
[project.scripts]
bluezoo = "bluezoo:bluezoo.main"
[tool.setuptools.packages.find]
exclude = ["scripts*", "tests*"]
[tool.autopep8]
max-line-length = 99
[tool.isort]
line_length = 99
[tool.ruff]
line-length = 99
[tool.ruff.lint]
select = [
# Standard errors and warnings
"E",
"W",
"F",
# Ensure that async is used properly
"ASYNC",
# Consistent commas and quotes
"COM",
"Q",
# Simplify the code if possible
"C4",
"RET",
"SIM",
# Ensure that scripts are executable
"EXE",
# Check for common exception issues
"EM",
"RSE",
# Check for common logging issues
"LOG",
"G",
# Check for common optimization issues
"SLOT",
# Keep syntax up to date
"UP",
]