-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 899 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 899 Bytes
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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "growatt_public_api"
version = "2025.10.23"
authors = [
{ name="Timo Hencken", email="github@hencken.de" },
]
description = "Python implementation of Growatt public REST API"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = [
"loguru>0.7",
"pydantic>=2.0,<2.9", # stay compatible with homeassistant_api which currently requires >=2.0,<2.9",
"requests>=2.27.1,<3.0.0", # stay compatible with homeassistant_api which currently requires ^2.27.1",
]
[project.urls]
Homepage = "https://github.com/timohencken/GrowattPublicApiPy"
Issues = "https://github.com/timohencken/GrowattPublicApiPy/issues"
[tool.black]
line-length = 120