-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (53 loc) · 1.65 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "aiostreammagic"
version = "2.10.0"
description = "An async python package for interfacing with Cambridge Audio / Stream Magic compatible streamers."
authors = ["Noah Husby <32528627+noahhusby@users.noreply.github.com>"]
maintainers = ["Noah Husby <32528627+noahhusby@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/noahhusby/aiostreammagic"
repository = "https://github.com/noahhusby/aiostreammagic"
documentation = "https://github.com/noahhusby/aiostreammagic"
[tool.poetry.dependencies]
python = "^3.11"
yarl = ">=1.6.0"
mashumaro = "^3.11"
orjson = ">=3.9.0"
aiohttp = "^3.11.7"
[tool.poetry.group.dev.dependencies]
mypy = "1.13.0"
pytest = "8.3.3"
pytest-asyncio = "0.24.0"
ruff = "0.7.4"
[tool.mypy]
# Specify the target platform details in config, so your developers are
# free to run mypy on Windows, Linux, or macOS and get consistent
# results.
platform = "linux"
python_version = "3.11"
# show error messages from unrelated files
follow_imports = "normal"
# suppress errors about unsatisfied imports
ignore_missing_imports = true
# be strict
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
strict_optional = true
warn_incomplete_stub = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.poetry.group.docs.dependencies]
pdoc = ">=14.7,<16.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"