[crawler]

This commit is contained in:
LASTA_DEV01\lasta
2026-05-08 17:41:15 +09:00
commit 4158789869
54 changed files with 4355 additions and 0 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[project]
name = "crawler-platform"
version = "0.1.0"
description = "Ontology-centered crawler and knowledge DB for reusable subscription recommendation platforms."
requires-python = ">=3.11"
dependencies = [
"beautifulsoup4>=4.12",
"fastapi>=0.110",
"playwright>=1.44",
"pydantic>=2",
"PyYAML>=6",
"requests>=2.31",
"SQLAlchemy>=2",
"uvicorn[standard]>=0.29",
]
[project.optional-dependencies]
test = ["pytest>=8"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-p no:cacheprovider"