forked from ekeih/libtado
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
47 lines (39 loc) · 1.13 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
[tool.poetry]
name = "libtado"
version = "3.7.13"
description = "A library (and a command line client) to control your Tado Smart Thermostat."
authors = ["Germain Lefebvre <[email protected]>"]
license = "GNU GPL v3.0"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 2 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
click = "*"
requests = "*"
python-dateutil = "2.8.2"
[tool.poetry.group.test.dependencies]
poetry-plugin-dotenv = ">=2.2.3,<2.5"
pytest = "*"
pytest-dotenv = "*"
python-dateutil = "*"
jsonschema = "*"
genson = "*"
[tool.poetry.group.docs.dependencies]
poetry-plugin-dotenv = ">=2.2.3,<2.5"
mkdocs = "*"
mkdocs-material = "*"
mkdocstrings = {extras = ["python"], version = "*"}
mkdocs-click = "*"
[tool.poetry.group.lint.dependencies]
poetry-plugin-dotenv = ">=2.2.3,<2.5"
ruff = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
tado = "libtado.__main__:main"