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 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=62.3"]
[project]
name = "aiohue"
# The version is set by GH action on release
authors = [
{name = "Paulus Schoutsen", email = "paulus@paulusschoutsen.nl"},
{name = "Marcel van der Veldt", email = "m.vanderveldt@outlook.com"},
]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"aiohttp",
"asyncio-throttle",
"awesomeversion",
]
description = "Python module to talk to Philips Hue."
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.11"
version = "0.0.0"
[project.optional-dependencies]
test = [
"codespell==2.4.1",
"mypy==1.18.2",
"pre-commit==4.3.0",
"pre-commit-hooks==6.0.0",
"pylint==3.3.8",
"pytest==8.4.2",
"pytest-asyncio==1.2.0",
"pytest-aiohttp==1.1.0",
"pytest-cov==7.0.0",
"ruff==0.13.1",
"safety==3.3.1",
]
[tool.codespell]
ignore-words-list = "dependees,"
[tool.setuptools]
include-package-data = true
platforms = ["any"]
zip-safe = false
[tool.setuptools.package-data]
aiohue = ["py.typed"]
[tool.setuptools.packages.find]
include = ["aiohue*"]
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = false # TEMPORARY DISABLED
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
exclude = ["aiohue/v1/", "aiohue/util.py"]
follow_imports = "skip"
ignore_missing_imports = true
no_implicit_optional = true
no_implicit_reexport = true
platform = "linux"
python_version = "3.11"
strict_optional = true
warn_incomplete_stub = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.pylint.MAIN]
ignore-paths = [
"aiohue/v1/", # V1 code is no longer maintained
]
[tool.pylint.BASIC]
good-names = [
"_",
"T",
]
[tool.pylint.DESIGN]
max-args = 10
max-attributes = 14
[tool.pylint."MESSAGES CONTROL"]
disable = [
"duplicate-code", # unavoidable
"format", # unavoidable
"unsubscriptable-object", # unavoidable
"unused-argument", # handled by ruff
"unspecified-encoding", # handled by ruff
"isinstance-second-argument-not-valid-type", # conflict with ruff
"fixme", # we're still developing
"too-few-public-methods", # unavoidable
"too-many-positional-arguments",
]
[tool.pylint.SIMILARITIES]
ignore-imports = true
[tool.pylint.FORMAT]
max-line-length = 88
[tool.pylint.VARIABLES]
allowed-redefined-builtins = ["id"]
[tool.pytest.ini_options]
addopts = "--cov"
asyncio_mode = "auto"
[tool.ruff]
exclude = ["aiohue/v1/*.py"]
fix = true
line-length = 88
show-fixes = true
target-version = "py311"
[tool.ruff.lint.pydocstyle]
# Use Google-style docstrings.
convention = "pep257"
[tool.ruff.lint]
ignore = [
"ANN002", # Just annoying, not really useful
"ANN003", # Just annoying, not really useful
"ANN401", # Opinioated warning on disallowing dynamically typed expressions
"D203", # Conflicts with other rules
"D213", # Conflicts with other rules
"D417", # False positives in some occasions
"EM101", # Just annoying, not really useful
"EM102", # Just annoying, not really useful
"FIX002", # Just annoying, not really useful
"PLR2004", # Just annoying, not really useful
"PD011", # Just annoying, not really useful
"TC001", # Just annoying, not really useful
"TC003", # Just annoying, not really useful
"S101", # assert is often used to satisfy type checking
"TD002", # Just annoying, not really useful
"TD003", # Just annoying, not really useful
"TD004", # Just annoying, not really useful
"COM812", # Conflict with the Ruff formatter
"ISC001", # Conflict with the Ruff formatter
"D101", # TEMPORARY DISABLED
"D102", # TEMPORARY DISABLED
"D103", # TEMPORARY DISABLED
"D107", # TEMPORARY DISABLED
"PGH004", # TEMPORARY DISABLED
"TRY300", # TEMPORARY DISABLED
"TRY003", # TEMPORARY DISABLED
"E501", # TEMPORARY DISABLED
"BLE001", # TEMPORARY DISABLED
"N818", # TEMPORARY DISABLED
"ANN201", # TEMPORARY DISABLED
"A001", # TEMPORARY DISABLED
"I001", # TEMPORARY DISABLED
"BLE001", # TEMPORARY DISABLED
"TRY201", # TEMPORARY DISABLED
"FBT001", # TEMPORARY DISABLED
"FBT002", # TEMPORARY DISABLED
"ANN202", # TEMPORARY DISABLED
"ANN001", # TEMPORARY DISABLED
"C403", # TEMPORARY DISABLED
"EM103", # TEMPORARY DISABLED
"PYI036", # TEMPORARY DISABLED
"A002", # TEMPORARY DISABLED
"TRY400", # TEMPORARY DISABLED
"RUF006", # TEMPORARY DISABLED
"UP041", # TEMPORARY DISABLED
"TRY401", # TEMPORARY DISABLED
"TRY301", # TEMPORARY DISABLED
"S311", # TEMPORARY DISABLED
"UP041", # TEMPORARY DISABLED
"PERF401", # TEMPORARY DISABLED
"ERA001", # TEMPORARY DISABLED
"ANN206", # TEMPORARY DISABLED
"RUF003", # TEMPORARY DISABLED
"ANN204", # TEMPORARY DISABLED
"PIE794", # TEMPORARY DISABLED
]
select = ["ALL"]
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
[tool.ruff.lint.isort]
combine-as-imports = true
force-sort-within-sections = true
known-first-party = ["aiohue"]
[tool.ruff.lint.mccabe]
max-complexity = 25
[tool.ruff.lint.pylint]
max-args = 10
max-branches = 25
max-returns = 15
max-statements = 50
|