Db initialization works

This commit is contained in:
Jonas Linter
2025-10-21 13:43:12 +02:00
parent 453af3a408
commit b6585b280f
6 changed files with 249 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
[project]
name = "meta-api-grabber"
version = "0.1.0"
description = "Add your description here"
description = "Meta Marketing API data grabber with TimescaleDB storage"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
@@ -13,3 +13,14 @@ dependencies = [
"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"