pyFroniusReg/pyproject.toml

32 lines
819 B
TOML
Raw Normal View History

2024-10-09 18:18:24 +11:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pyfroniusreg"]
2024-10-08 17:01:54 +11:00
[project]
2024-10-09 18:18:24 +11:00
name = "pyFroniusReg"
2024-10-08 17:01:54 +11:00
version = "0.0.1"
authors = [
{ name = "Paul Warren", email="pwarren@pwarren.id.au" }
]
2024-10-09 18:18:24 +11:00
description = "A library to make interacting with Fronius inverters and storage systems simpler"
2024-10-08 17:01:54 +11:00
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
2024-10-09 18:18:24 +11:00
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
2024-10-08 17:01:54 +11:00
"Operating System :: OS Independent",
2024-10-09 18:18:24 +11:00
"Development Status :: 1 - Planning",
2024-10-08 17:01:54 +11:00
]
2024-10-09 18:18:24 +11:00
dependencies = [
"pymodbus"
]
2024-10-08 17:01:54 +11:00
[project.urls]
Homepage = "https://git.pwarren.id.au/pwarren/PyFroniusReg/"
2024-10-09 18:18:24 +11:00
Issues = "https://git.pwarren.id.au/pwarren/PyFroniusReg/issues"