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 63 64 65 66 67 68 69 70 71
|
[project]
name = "aiostreammagic"
version = "2.13.0"
description = "An async python package for interfacing with Cambridge Audio / Stream Magic compatible streamers."
authors = [
{ name = "Noah Husby", email = "32528627+noahhusby@users.noreply.github.com" }
]
maintainers = [
{ name = "Noah Husby", email = "32528627+noahhusby@users.noreply.github.com" }
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"yarl>=1.20.1",
"mashumaro>=3.17",
"orjson>=3.11.0",
"aiohttp>=3.12.14"
]
[project.urls]
homepage = "https://github.com/noahhusby/aiostreammagic"
repository = "https://github.com/noahhusby/aiostreammagic"
documentation = "https://github.com/noahhusby/aiostreammagic"
[project.optional-dependencies]
dev = [
"mypy==1.19.1",
"pytest==9.0.2",
"pytest-asyncio==1.3.0",
"pytest-cov==7.0.0",
"ruff==0.15.1"
]
docs = [
"pdoc>=14.7,<17.0"
]
[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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|