- _parse_ipify/_parse_reverse return None on a truthy non-dict body instead of raising AttributeError, honoring the documented 'None on any parse failure' contract (L9) - build the geo request ClientTimeout once instead of twice (nit) - drop the stale 'live proxy region- contract' wording from _state_slug's docstring (nit). Signed-off-by: disqualifier <dev@disqualifier.me>
17 lines
433 B
TOML
17 lines
433 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "commons"
|
|
version = "0.2.3"
|
|
description = "small stdlib-only sync helpers: time/timezone deltas, dotted-path dict access, display masking, ip/address tooling, and retry/backoff"
|
|
requires-python = ">=3.10"
|
|
dependencies = []
|
|
|
|
[project.optional-dependencies]
|
|
addr = ["aiohttp>=3.9"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/commons"]
|