-
Notifications
You must be signed in to change notification settings - Fork 84
/
pyproject.toml
49 lines (42 loc) · 1.31 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "tdmgr"
dynamic = ["version"]
description = "Tasmota Device Manager is able to find, monitor and do magic things. Like a Superhero."
authors = [{ name = "jziolkowski", email = "[email protected]" }]
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["Tasmota", "Device Manager", "Home Automation"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Home Automation",
"Development Status :: 4 - Beta",
]
dependencies = [
"paho_mqtt>=1.4,<2",
"PyQt5>=5.14.2,<6",
"pydantic==2.5.2"
]
requires-python = ">=3.8"
[project.urls]
homepage = "https://github.com/jziolkowski/tdm"
issue-tracker = "https://github.com/jziolkowski/tdm/issues"
documentation = "https://github.com/jziolkowski/tdm/wiki"
[tool.setuptools_scm]
write_to = "tdmgr/_version.py"
local_scheme = "no-local-version"
[project.scripts]
tdmgr = "tdmgr.run:start"
[tool.ruff]
line-length = 100
target-version = "py38"
[tool.ruff.format]
line-ending = "auto"
quote-style = "double"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]