26 lines
516 B
TOML
26 lines
516 B
TOML
[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"
|