File: pyproject.toml

package info (click to toggle)
python-mystrom 2.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 328 kB
  • sloc: python: 981; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 723 bytes parent folder | download
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.6.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"