-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#81] Add meter/temperature debug log messages to help investigation …
…in case of errors
- Loading branch information
Stéphane Senart
committed
Jan 11, 2025
1 parent
8237bf2
commit 5ae7451
Showing
2 changed files
with
50 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,6 @@ jobs: | |
strategy: | ||
matrix: | ||
python-version: | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,50 @@ | ||
# See documentation : https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html | ||
# Full example : github.com/pyscaffold/pyscaffold/blob/master/setup.cfg | ||
|
||
[metadata] | ||
name = pygazpar | ||
version = attr: pygazpar.__version__ | ||
author = Stephane Senart | ||
author_email = stephane.senart@gmail.com | ||
description = Retrieve gas consumption from GrDF web site (French Gas Company) | ||
long_description = file: README.md, CHANGELOG.md, LICENSE.md | ||
long_description_content_type = text/markdown | ||
platforms = any | ||
license = MIT | ||
license_files = LICENSE.md | ||
url = https://github.com/ssenart/pygazpar | ||
download_url = https://github.com/ssenart/pygazpar/releases | ||
project_urls = | ||
Home = https://github.com/ssenart/pygazpar | ||
Source = https://github.com/ssenart/pygazpar | ||
Issues = https://github.com/ssenart/PyGazpar/issues | ||
Changelog = https://github.com/ssenart/PyGazpar/blob/master/CHANGELOG.md | ||
Download = https://pypi.org/project/pygazpar | ||
keywords = Energy, Natural Gas, Meter, GrDF, Gazpar | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Topic :: Software Development :: Libraries | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
Programming Language :: Python :: 3.12 | ||
[options] | ||
zip_safe = False | ||
include_package_data = True | ||
packages = find: | ||
python_requires = >=3.7 | ||
install_requires = | ||
openpyxl >= 2.6.3 | ||
requests >= 2.26.0 | ||
pandas | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
pygazpar = pygazpar.__main__:main | ||
|
||
[bdist_wheel] | ||
universal = False | ||
plat-name = any | ||
python-tag = py37 | ||
# See documentation : https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html | ||
# Full example : github.com/pyscaffold/pyscaffold/blob/master/setup.cfg | ||
|
||
[metadata] | ||
name = pygazpar | ||
version = attr: pygazpar.__version__ | ||
author = Stephane Senart | ||
author_email = stephane.senart@gmail.com | ||
description = Retrieve gas consumption from GrDF web site (French Gas Company) | ||
long_description = file: README.md, CHANGELOG.md, LICENSE.md | ||
long_description_content_type = text/markdown | ||
platforms = any | ||
license = MIT | ||
license_files = LICENSE.md | ||
url = https://github.com/ssenart/pygazpar | ||
download_url = https://github.com/ssenart/pygazpar/releases | ||
project_urls = | ||
Home = https://github.com/ssenart/pygazpar | ||
Source = https://github.com/ssenart/pygazpar | ||
Issues = https://github.com/ssenart/PyGazpar/issues | ||
Changelog = https://github.com/ssenart/PyGazpar/blob/master/CHANGELOG.md | ||
Download = https://pypi.org/project/pygazpar | ||
keywords = Energy, Natural Gas, Meter, GrDF, Gazpar | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Topic :: Software Development :: Libraries | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
Programming Language :: Python :: 3.12 | ||
Programming Language :: Python :: 3.13 | ||
[options] | ||
zip_safe = False | ||
include_package_data = True | ||
packages = find: | ||
python_requires = >=3.9 | ||
install_requires = | ||
openpyxl >= 2.6.3 | ||
requests >= 2.26.0 | ||
pandas | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
pygazpar = pygazpar.__main__:main | ||
|
||
[bdist_wheel] | ||
universal = False | ||
plat-name = any | ||
python-tag = py39 |