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
|
[build-system]
requires = [
"hatchling>=1.3.1",
"hatch-vcs",
]
build-backend = "hatchling.build"
[project]
name = "iaqualink"
description = "Asynchronous library for Jandy iAqualink"
readme = "README.md"
license = "BSD-3-Clause"
requires-python = ">=3.12"
authors = [
{ name = "Florent Thoumie", email = "florent@thoumie.net" },
]
keywords = [
"iaqualink",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"httpx[http2]>=0.27.0",
]
dynamic = [
"version",
]
[project.optional-dependencies]
dev = [
"pre-commit==4.2.0",
"mypy==1.15.0",
"ruff==0.11.2",
]
test = [
"coverage[toml]==7.7.1",
"pytest==8.3.5",
"pytest-cov==6.0.0",
"pytest-icdiff==0.9",
"pytest-sugar==1.0.0",
"respx==0.22.0",
]
[project.urls]
Homepage = "https://github.com/flz/iaqualink-py"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/iaqualink/version.py"
[tool.hatch.build.targets.sdist]
[tool.hatch.build.targets.wheel]
packages = ["src/iaqualink"]
[tool.ruff]
line-length = 80
[tool.ruff.lint]
ignore = [
"SLF001", # Some tests currently use private members
"G004", # Will fix all f-string logging calls later
]
[tool.coverage.run]
omit = [
".venv/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
]
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::DeprecationWarning",
]
|