Livrare LOT 1 - Didi

This commit is contained in:
Dezvoltari Evotech 2026-06-25 14:13:25 -07:00
commit 5380c3fc63
990 changed files with 133308 additions and 0 deletions

View file

@ -0,0 +1,33 @@
[project]
name = "cloak"
version = "0.1.0"
description = "Stealth Chromium scraping service — Google/Bing/DDG search via CloakBrowser, exposed as HTTP API."
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"pydantic>=2.0",
"pydantic-settings>=2.0",
# cloakbrowser is provided by the base Docker image (cloakhq/cloakbrowser:latest).
# Listed in optional-dependencies for local dev only.
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"httpx>=0.27.0",
"ruff>=0.8",
"cloakbrowser",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cloak"]
[tool.ruff]
line-length = 100
target-version = "py310"