feat: initial commit

This commit is contained in:
2026-04-18 08:59:04 +02:00
commit 862c0d1703
32 changed files with 8492 additions and 0 deletions

25
service/pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "scrapling-service"
version = "0.1.0"
description = "FastAPI microservice wrapping Scrapling for n8n integration"
requires-python = ">=3.11"
dependencies = [
"scrapling[fetchers]>=0.2",
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"pydantic>=2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"httpx>=0.27",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"