-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (30 loc) · 885 Bytes
/
pyproject.toml
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
35
36
[tool.poetry]
name = "aiorussound"
version = "4.1.0"
description = "Asyncio client for Russound RIO devices."
authors = ["Noah Husby <[email protected]>"]
maintainers = ["Noah Husby <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/noahhusby/aiorussound"
repository = "https://github.com/noahhusby/aiorussound"
documentation = "https://github.com/noahhusby/aiorussound"
[tool.poetry.dependencies]
python = "^3.11"
mashumaro = "^3.11"
orjson = ">=3.9.0"
[tool.poetry.group.dev.dependencies]
coverage = {version = "7.6.9"}
mypy = "1.14.0"
pre-commit = "4.0.1"
pre-commit-hooks = "5.0.0"
pylint = "3.3.2"
pytest = "8.3.4"
pytest-asyncio = "0.25.0"
pytest-cov = "6.0.0"
ruff = "0.8.4"
[tool.poetry.group.docs.dependencies]
pdoc = ">=14.7,<16.0"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]