add encar scraper

This commit is contained in:
qananasikq
2026-04-16 18:01:05 +03:00
parent 5624c1973a
commit 4096d29a07
28 changed files with 3472 additions and 150 deletions

View File

@@ -3,16 +3,15 @@ requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "iaai-scraper"
name = "encar-scraper"
version = "0.1.0"
description = "IAAI scraper service with FastAPI, Celery, Playwright and PostgreSQL"
description = "Encar scraper service with FastAPI, Celery and PostgreSQL"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"alembic>=1.14.0",
"celery>=5.4.0",
"fastapi>=0.115.0",
"playwright>=1.53.0",
"psycopg2-binary>=2.9.9",
"pydantic>=2.8.2",
"python-dotenv>=1.0.1",
@@ -29,13 +28,13 @@ dev = [
]
[project.scripts]
iaai = "iaai_scraper.cli:main"
encar = "encar_scraper.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["iaai_scraper*"]
include = ["encar_scraper*"]
[tool.pytest.ini_options]
addopts = "-q --disable-warnings"