-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.1 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
[project]
name = "hcalory-control"
version = "0.1.5"
dependencies = [
"bleak==0.22.3",
"bleak-retry-connector==3.6.0",
"py-datastruct==2.0.0"
]
description = "A tool for controlling Hcalory diesel heaters over Bluetooth."
authors = [{ name = "Evan Foster", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.11"
keywords = [
"hcalory",
"bluetooth",
"ble",
"diesel",
"heater"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Home Automation",
]
[project.urls]
Repository = "https://github.com/evanfoster/hcalory-control"
[project.scripts]
hcalory-control = "hcalory_control.heater:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mypy>=1.13.0",
"ruff>=0.7.3",
]