-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.4 KB
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
50
51
52
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vidaa-control"
version = "1.1.0"
description = "Control Hisense VIDAA TVs via MQTT over TLS"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{name = "Tom Babolewski", email = "tombabolewski@gmail.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["hisense", "vidaa", "tv", "mqtt", "home-automation", "smart-tv"]
dependencies = [
"paho-mqtt>=1.6.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
]
[project.urls]
Homepage = "https://github.com/tombabolewski/vidaa-control"
Repository = "https://github.com/tombabolewski/vidaa-control"
"Bug Tracker" = "https://github.com/tombabolewski/vidaa-control/issues"
[project.scripts]
tv = "vidaa.cli:main"
[tool.setuptools.packages.find]
include = ["vidaa*"]
exclude = ["vidaa2mqtt*"]
[tool.setuptools.package-data]
vidaa = ["certs/*.pem", "certs/*.key"]