24 lines
533 B
TOML
24 lines
533 B
TOML
[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"
|