- CurlCffi/Noble raw_request translate backend-native network errors (curl_cffi RequestException, noble_tls TLSClientException) into aiohttp.ClientError so the bare request() path gives the same typed-failure contract as the aiohttp backend (L6) - Noble.setup uses download_if_necessary (the current noble_tls API), with update_if_necessary only as a fallback; docstring/CLAUDE.md no longer claim the dead 'refreshes an existing one' path (L7) - pyproject description says composition (one injectable TLSSession), not the old 'ExtendedSession subclasses' (L8). Signed-off-by: disqualifier <dev@disqualifier.me>
24 lines
643 B
TOML
24 lines
643 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "aioweb_tls"
|
|
version = "0.1.3"
|
|
description = "TLS-fingerprinting backends (curl_cffi / noble_tls) for aioweb via one injectable TLSSession, config-free, installable."
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git@v0.1.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
curl = ["curl_cffi>=0.15"]
|
|
noble = ["noble-tls>=0.1.5"]
|
|
all = ["curl_cffi>=0.15", "noble-tls>=0.1.5"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/aioweb_tls"]
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|