forked from home-assistant-ecosystem/python-mystrom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (23 loc) · 723 Bytes
/
pyproject.toml
File metadata and controls
26 lines (23 loc) · 723 Bytes
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
[tool.poetry]
name = "python-mystrom"
version = "2.4.0"
description = "Asynchronous Python API client for interacting with myStrom devices"
authors = ["Fabian Affolter <fabian@affolter-engineering.ch>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/home-assistant-ecosystem/python-mystrom"
repository = "https://github.com/home-assistant-ecosystem/python-mystrom"
keywords = ["myStrom", "API", "client", "asynchronous"]
packages = [
{ include = "pymystrom" }
]
[tool.poetry.dependencies]
python = ">=3.11"
aiohttp = "*"
click = "*"
requests = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
pymystrom = "pymystrom.cli:main"