-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (81 loc) · 2.29 KB
/
pyproject.toml
File metadata and controls
92 lines (81 loc) · 2.29 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gtm-agent"
version = "0.1.0"
description = "Open-source CLI to configure Google Tag Manager from a YAML spec or interactive Q&A, driven by Claude Code."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "Resonance Labs" }]
keywords = ["gtm", "google-tag-manager", "cli", "claude-code", "infrastructure-as-code"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
"typer>=0.12",
"pydantic>=2.5",
"pyyaml>=6.0",
"google-api-python-client>=2.100",
"google-auth>=2.20",
"google-auth-oauthlib>=1.0",
"google-auth-httplib2>=0.2",
"python-dotenv>=1.0",
"rich>=13.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
"pytest-mock>=3.12",
"ruff>=0.4",
"freezegun>=1.4",
]
[project.scripts]
gtm-agent = "gtm_agent.cli:app"
[project.urls]
Issues = "https://github.com/EarthCraig/GTAG-Manager/issues"
Source = "https://github.com/EarthCraig/GTAG-Manager"
[tool.hatch.build.targets.wheel]
packages = ["src/gtm_agent"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP", "SIM", "RUF"]
ignore = [
"E501", # line too long; handled by formatter
"B008", # Typer uses function-call defaults for Option/Argument
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["B011"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: integration tests gated by GTM_TEST_CONTAINER + GTM_TEST_TOKEN env vars",
]
addopts = "-ra --strict-markers"
filterwarnings = [
"ignore::DeprecationWarning:google",
]
[tool.coverage.run]
source = ["src/gtm_agent"]
branch = true
[tool.coverage.report]
show_missing = true
skip_covered = false
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"raise NotImplementedError",
]