-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (59 loc) · 1.64 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (59 loc) · 1.64 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
[project]
name = "ThermometerMonitor"
version = "0.3.0"
description = "Asynchronous BLE environmental monitor and telemetry logger for smart thermometers."
authors = [{ name = "lexsys.ko", email = "lexsys.ko@gmail.com" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aioblescan>=0.2.14; sys_platform == 'linux'",
"aiosqlite>=0.22.1",
"bleak>=3.0.2",
"python-dotenv>=1.2.3",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["python", "http", "bluetooth", "monitoring", "BLE passive mode"]
[project.urls]
Homepage = "https://github.com/lexsysko/ThermometerMonitor"
Documentation = "https://github.com/lexsysko/ThermometerMonitor#readme"
Repository = "https://github.com/lexsysko/ThermometerMonitor.git"
Issues = "https://github.com/lexsysko/ThermometerMonitor/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ThermometerMonitor"]
[project.scripts]
thermometermonitor = "ThermometerMonitor.main:run"
[tool.hatch.build.sdist]
relative-install = true
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E4", "E7", "E9"]
ignore = [
# "RUF012",
# "RUF022",
# "RUF100",
# "S112",
# "SIM118",
# "UP031",
# "UP032",
# "BLE001",
# "PLW1508"
]
[tool.isort]
profile = "black"
line_length = 120
[tool.flake8]
max-line-length = 120
[tool.uv]
exclude-newer = "7 days"
exclude-newer-package = { some-urgent-package = false }