33 lines
774 B
TOML
33 lines
774 B
TOML
[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"
|