-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (33 loc) · 1.02 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
[build-system]
requires = ["setuptools>=62.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
aiohuesyncbox = ["py.typed"]
[tool.setuptools.packages.find]
include = ["aiohuesyncbox*"]
[project]
name = "aiohuesyncbox"
version = "0.0.30"
description = "Asyncio package to communicate with a Philips Hue Play HDMI Sync Box."
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Michel van de Wetering", email = "[email protected]" },
]
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries",
]
dependencies = ["aiohttp>=3.9.0,<4"]
urls = { Homepage = "https://github.com/mvdwetering/aiohuesyncbox" }
[project.optional-dependencies]
test = [
"mypy==1.11.0",
"ruff==0.5.5",
]