[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-ga4-ultimate"
version = "1.0.0"
description = "Comprehensive Google Analytics 4 MCP Server with 54 specialized tools"
authors = [
{name = "MCP GA4 Ultimate Team", email = "contact@example.com"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Office/Business :: Financial :: Spreadsheet",
]
keywords = [
"google-analytics",
"mcp",
"model-context-protocol",
"analytics",
"ai",
"cursor",
"claude"
]
dependencies = [
"google-analytics-data>=0.18.0",
"google-analytics-admin>=0.22.0",
"google-auth>=2.20.0",
"google-auth-oauthlib>=1.0.0",
"google-auth-httplib2>=0.2.0",
"mcp>=1.0.0",
"typing-extensions>=4.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/your-org/mcp-ga4-ultimate"
Documentation = "https://github.com/your-org/mcp-ga4-ultimate/blob/main/docs/"
Repository = "https://github.com/your-org/mcp-ga4-ultimate"
"Bug Tracker" = "https://github.com/your-org/mcp-ga4-ultimate/issues"
[project.scripts]
mcp-ga4-ultimate = "mcp_ga4_ultimate:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["mcp_ga4_ultimate*"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --cov=mcp_ga4_ultimate --cov-report=term-missing"