-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 944 Bytes
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 944 Bytes
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
[project]
name = "loctekmotion-iot"
version = "1.0.0"
description = "Control your desk via an ESP32 module connected to Home Assistant. Can be adapted to ESP8266 or other ESP32 variant."
readme = "README.md"
authors = [
{name = "Mick Vleeshouwer", email = "mick@imick.nl"},
]
license = {text = "MIT"}
requires-python = ">=3.11"
dependencies = []
[dependency-groups]
dev = [
"esphome==2026.4.1",
"pre-commit>=4.5.1",
"ruff>=0.15.11",
]
[project.urls]
homepage = "https://github.com/iMicknl/LoctekMotion_IoT"
repository = "https://github.com/iMicknl/LoctekMotion_IoT"
[tool.ruff.lint]
select = [
# pydocstyle
"D",
# flake8-async
# "ASYNC",
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# ruff
"RUF",
]
ignore = ["E501"] # Line too long
[tool.ruff.lint.pydocstyle]
convention = "google"