- remove is_throttled(): read a non-existent .resp -> always False (dead) (L2) - cancel/await aioimaplib's fire-and-forget create_connection task on a failed connect so a refused host doesn't log 'Task exception was never retrieved' per retry (L3) - get_folders() parses the server-announced LIST delimiter instead of hardcoding '/', so '.'/NIL-delimited servers (Gmail/Dovecot) return correct names (L4) - mark the dead aioimaplib-2.0.x tuple branch + the non-aioimaplib authenticate fallback as cross-version escape hatches (nits). Signed-off-by: disqualifier <dev@disqualifier.me>
20 lines
434 B
TOML
20 lines
434 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "aiomail"
|
|
version = "0.1.4"
|
|
description = "async IMAP one-time-code retrieval with password/OAuth2 auth and dynamic matching"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"aioimaplib>=1.0",
|
|
"beautifulsoup4>=4.11",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
oauth = ["aiohttp>=3.9"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/aiomail"]
|