-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (42 loc) · 1.16 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
[build-system]
requires = ["setuptools>=75.2.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hue-entertainment-pykit"
version = "0.9.2"
authors = [
{name = "Dominik Hrdas"}
]
description = "A comprehensive Python toolkit for Philips Hue Entertainment API"
readme = "README.md"
license = {file = "LICENSE.md"}
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities"
]
requires-python = ">=3.10, <=3.12.7"
dependencies = [
"certifi==2024.8.30",
"charset-normalizer==3.4.0",
"click==8.1.7",
"colorama==0.4.6",
"idna==3.10",
"ifaddr==0.2.0",
"packaging==24.1",
"pathspec==0.12.1",
"platformdirs==4.3.6",
"python-mbedtls==2.10.1",
"requests==2.32.3",
"typing_extensions==4.12.2",
"urllib3==2.2.3",
"zeroconf==0.135.0"
]
keywords = ["philips", "hue", "lights", "entertainment", "api"]
[project.urls]
Repository = "https://github.com/hrdasdominik/hue-entertainment-pykit"
[options]
package_dir = "src"