per-call impersonate= is honored only via the low-level request()/_raw_request path (which forwards **kwargs to the backend), NOT request_with_retries — its inherited aioweb signature is fixed with no **kwargs and raises TypeError on an extra kwarg. docs-only across README + backend docstring + CLAUDE.md; for the retrying path, set the profile on the CurlCffi/Noble instance. no code change. Signed-off-by: disqualifier <dev@disqualifier.me>
24 lines
642 B
TOML
24 lines
642 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "aioweb_tls"
|
|
version = "0.1.2"
|
|
description = "TLS-fingerprinting backends for aioweb — curl_cffi / noble_tls ExtendedSession subclasses, 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
|