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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "webrtc-models"
license = {text = "Apache-2.0"}
description = "Python WebRTC models"
readme = "README.md"
authors = [
{name = "Robert Resch", email = "robert@resch.dev"}
]
keywords = ["webrtc"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.12.0"
dependencies = [
"mashumaro~=3.13",
"orjson>=3.10.7",
]
version = "0.0.0"
[project.urls]
"Homepage" = "https://pypi.org/project/webrtc-models"
"Source Code" = "https://github.com/home-assistant-libs/python-webrtc-models"
"Bug Reports" = "https://github.com/home-assistant-libs/python-webrtc-models/issues"
[tool.uv]
dev-dependencies = [
"covdefaults>=2.3.0",
"mypy==1.13.0",
"pre-commit==4.0.1",
"pylint-per-file-ignores>=1.3.2",
"pylint==3.3.1",
"pytest-cov==6.0.0",
"pytest==8.3.3",
"syrupy>=4.7.1",
]
[tool.hatch.build.targets.sdist]
include = [
"/webrtc_models",
]
[tool.coverage.report]
show_missing = true
fail_under = 99
[tool.coverage.run]
plugins = ["covdefaults"]
source = ["webrtc_models"]
[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.12"
# 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.ruff.lint.per-file-ignores]
"tests/**" = [
"D100", # Missing docstring in public module
"D103", # Missing docstring in public function
"D104", # Missing docstring in public package
"N802", # Function name {name} should be lowercase
"N816", # Variable {name} in global scope should not be mixedCase
"PLR0913", # Too many arguments in function definition
"S101", # Use of assert detected
"SLF001", # Private member accessed: {access}
"T201", # print found
]
[tool.pylint]
extension-pkg-whitelist = ["orjson"]
[tool.pylint.BASIC]
good-names = [
"_",
"ex",
"fp",
"i",
"id",
"j",
"k",
"on",
"Run",
"T",
]
[tool.pylint.DESIGN]
max-attributes = 8
[tool.pylint.MASTER]
load-plugins=[
"pylint_per_file_ignores",
]
[tool.pylint."MESSAGES CONTROL"]
disable = [
"duplicate-code",
"format",
"unsubscriptable-object",
"too-few-public-methods",
"too-many-instance-attributes",
"too-many-arguments",
"too-many-public-methods",
"wrong-import-order",
]
per-file-ignores = [
# redefined-outer-name: Tests reference fixtures in the test function
"/tests/:redefined-outer-name",
]
[tool.pylint.SIMILARITIES]
ignore-imports = true
[tool.pylint.FORMAT]
max-line-length = 88
[tool.pytest.ini_options]
addopts = "--cov"
asyncio_mode = "auto"
[tool.ruff.lint]
ignore = [
"ANN101", # Self... explanatory
"ANN102", # cls... just as useless
"ANN401", # Opinioated warning on disallowing dynamically typed expressions
"COM812", # Recommended to disable due conflicts with ruff format
"D203", # Conflicts with other rules
"D213", # Conflicts with other rules
"D417", # False positives in some occasions
"ISC001", # Recommended to disable due conflicts with ruff format
"PLR2004", # Just annoying, not really useful
"PLR0913", # Too many arguments
]
select = ["ALL"]
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
[tool.ruff.lint.isort]
known-first-party = ["webrtc_models"]
force-sort-within-sections = true
split-on-trailing-comma = false
combine-as-imports = true
[tool.ruff.lint.mccabe]
max-complexity = 25
|