forked from Leggin/dirigera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.14 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dirigera"
version = "1.2.0"
description = "An unofficial Python client for controlling the IKEA Dirigera Smart Home Hub"
readme = "README.md"
authors = [{ name = "Leggin", email = "[email protected]" }]
license = { file = "LICENSE" }
keywords = [
"python",
"iot",
"smarthome",
"hub",
"lighting",
"ikea",
"tradfri",
"dirigera",
]
dependencies = [
"requests >= 2.22.0",
"websocket-client >= 1.0.0",
"pydantic >= 1.10.0",
]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = ["black", "pytest"]
[project.scripts]
generate-token = "dirigera.hub.auth:main"
[project.urls]
Homepage = "https://github.com/Leggin/dirigera"