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-11-05 17:51:22 +11:00
|
|
|
version = "0.2.0"
|
2024-10-08 17:01:54 +11:00
|
|
|
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-11-05 17:51:22 +11:00
|
|
|
"Development Status :: 3 - Alpha",
|
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"
|
|
|
|
|
2024-10-14 19:52:55 +11:00
|
|
|
|
|
|
|
[tool.ruff]
|
2024-10-14 19:59:54 +11:00
|
|
|
line-length = 99
|
2024-10-14 19:52:55 +11:00
|
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
# Add the `line-too-long` rule to the enforced rule set. By default, Ruff omits rules that
|
|
|
|
# overlap with the use of a formatter, like Black, but we can override this behavior by
|
|
|
|
# explicitly adding the rule.
|
2024-10-16 21:09:48 +11:00
|
|
|
extend-select = ["E501", "T20", "E", "PL"]
|
2024-10-16 18:40:10 +11:00
|
|
|
|
2024-10-16 21:09:48 +11:00
|
|
|
[tool.ruff.lint.extend-per-file-ignores]
|
2024-11-05 15:20:43 +11:00
|
|
|
"*register_map*.py" = ["E501"]
|