feat: initial commit
This commit is contained in:
25
service/pyproject.toml
Normal file
25
service/pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user