Files
meta_api_grabber/pyproject.toml
2025-10-21 13:43:12 +02:00

27 lines
755 B
TOML

[project]
name = "meta-api-grabber"
version = "0.1.0"
description = "Meta Marketing API data grabber with TimescaleDB storage"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiohttp>=3.13.1",
"alembic>=1.17.0",
"asyncpg>=0.30.0",
"facebook-business>=23.0.3",
"python-dotenv>=1.1.1",
"requests-oauthlib>=2.0.0",
"sqlalchemy[asyncio]>=2.0.44",
]
[project.scripts]
meta-auth = "meta_api_grabber.auth:main"
meta-scheduled = "meta_api_grabber.scheduled_grabber:main"
meta-insights = "meta_api_grabber.insights_grabber:main"
meta-test-accounts = "meta_api_grabber.test_ad_accounts:main"
meta-token = "meta_api_grabber.token_manager:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"