File: pyproject.toml

package info (click to toggle)
python-altruistclient 0.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 220 kB
  • sloc: python: 198; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 634 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
27
28
29
[tool.poetry]
name = "altruistclient"
version = "0.1.1"
description = "Async library for discovering and fetching data from Altruist sensors"
authors = [
    "Alena Bugrova <bugrovaad@gmail.com>",
]
license = "Apache-2.0"

repository = "https://github.com/LoSk-p/altruistclient"

readme = "README.md"

packages = [
    { include = "altruistclient" },
    { include = "altruistclient/py.typed" },
]
exclude = [
    ".gitignore",
    ]

[tool.poetry.dependencies]
python = ">=3.9, <4.0"
aiohttp = ">=3.11.0,<4.0.0"
zeroconf = ">=0.143.0,<1.0.0"

[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"