Skip to content

Commit

Permalink
[#31] Add cost computation
Browse files Browse the repository at this point in the history
  • Loading branch information
Stéphane Senart committed Feb 2, 2025
1 parent 5ac6845 commit ea68263
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
13 changes: 11 additions & 2 deletions pyproject.template.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "gazpar2haws"
version = "${PACKAGE_VERSION}"
version = "0.2.1"
description = "Gazpar2HAWS is a gateway that reads data history from the GrDF (French gas provider) meter and send it to Home Assistant using WebSocket interface"
license = { file = "LICENSE" }
readme = "README.md"
Expand All @@ -17,7 +17,9 @@ classifiers = [
dependencies = [
"pygazpar>=1.2.7",
"websockets>=14.1",
"pyyaml>=6.0.2"
"pyyaml>=6.0.2",
"pydantic[email] (>=2.10.6,<3.0.0)",
"pydantic-extra-types (>=2.10.2,<3.0.0)"
]

[tool.poetry]
Expand All @@ -31,3 +33,10 @@ pytest-asyncio = "^0.25.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = "C,W1203,R0902,R0913,R0914,R0917,R0801"

[tool.black]
line-length = 120
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,9 @@ pytest-asyncio = "^0.25.0"
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = "C,W1203,R0902,R0913,R0914,R0917,R0801"

[tool.black]
line-length = 120

0 comments on commit ea68263

Please sign in to comment.