-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (59 loc) · 1.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hass-mqtt-things"
dynamic = ["version"]
description = "Library for rapid development of things to be integrated with Home Assistant through MQTT"
readme = "README.md"
requires-python = ">=3.9"
license = "Apache-2.0"
authors = [
{ name = "Alex Barcelo", email = "alex@betarho.net" },
]
keywords = [
"home-assistant",
"things",
"home automation",
"iot",
"internet of things",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Topic :: Home Automation",
"Intended Audience :: Developers",
]
dependencies = [
"paho-mqtt",
"getmac",
]
[project.urls]
Documentation = "https://github.com/alexbarcelo/hass-mqtt-things#readme"
Issues = "https://github.com/alexbarcelo/hass-mqtt-things/issues"
Source = "https://github.com/alexbarcelo/hass-mqtt-things"
[tool.hatch.version]
path = "src/ham/__init__.py"
[tool.hatch.envs.default]
dependencies = [
"pytest",
"pytest-docker",
"homeassistant_api",
]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/tests",
"/examples",
]
[tool.hatch.build.targets.wheel]
packages = ["src/ham"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]