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 33 34
|
[tool.poetry]
name = "iometer"
version = "0.2.0"
description = "Asynchronous Python client for IOmeter"
authors = ["jukrebs <justus@iometer.de>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["IOmeter", "smart meter", "energy", "automation"]
homepage = "https://iometer.de/"
repository = "https://github.com/iometer-gmbh/iometer.py"
documentation = "https://github.com/iometer-gmbh/iometer.py/blob/main/docs/index.md"
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.0.0"
yarl = ">=1.6.0"
[tool.poetry.group.dev.dependencies]
pytest = "8.3.4"
pytest-asyncio = "0.25.1"
aioresponses = "0.7.7"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
|