46 lines
957 B
TOML
46 lines
957 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "iaai-scraper"
|
|
version = "0.1.0"
|
|
description = "IAAI scraper service with FastAPI, Celery, Playwright and PostgreSQL"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"alembic>=1.14.0",
|
|
"celery>=5.4.0",
|
|
"curl-cffi>=0.11.0",
|
|
"fastapi>=0.115.0",
|
|
"playwright>=1.53.0",
|
|
"psycopg2-binary>=2.9.9",
|
|
"pydantic>=2.8.2",
|
|
"python-dotenv>=1.0.1",
|
|
"redis>=5.2.0",
|
|
"sqlalchemy>=2.0.32",
|
|
"uvicorn>=0.34.0",
|
|
"urllib3>=2.0.0",
|
|
"orjson>=3.10.0",
|
|
"brotli>=1.1.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.3.0",
|
|
"pytest-cov>=5.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
iaai = "iaai_scraper.cli:main"
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["iaai_scraper*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "-q --disable-warnings"
|
|
python_files = ["tests/test_*.py"]
|
|
log_cli = false |