-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 970 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[project]
name = "adloop"
version = "0.9.0"
description = "The AI command center for Google Ads, GA4, and tracking code."
readme = "README.md"
authors = [
{ name = "Daniel Klose", email = "info@daniel-klose.com" }
]
requires-python = ">=3.11"
license = { text = "MIT" }
keywords = ["mcp", "google-ads", "google-analytics", "ga4", "cursor", "marketing"]
dependencies = [
"fastmcp>=3.0.0",
"google-ads>=29.0.0",
"google-analytics-data>=0.20.0",
"google-analytics-admin>=0.27.0",
"google-auth-oauthlib>=1.0.0",
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/kLOsk/adloop"
Repository = "https://github.com/kLOsk/adloop"
Issues = "https://github.com/kLOsk/adloop/issues"
Changelog = "https://github.com/kLOsk/adloop/releases"
[project.scripts]
adloop = "adloop:main"
[build-system]
requires = ["uv_build>=0.10.8,<0.11.0"]
build-backend = "uv_build"
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23"]