-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
129 lines (112 loc) · 3.85 KB
/
pyproject.toml
File metadata and controls
129 lines (112 loc) · 3.85 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mureo"
version = "0.9.0"
description = "Your local-first AI ad ops crew. Works with Claude Code, Cursor, Codex & Gemini."
requires-python = ">=3.10"
license = "Apache-2.0"
readme = "README.md"
authors = [{name = "Logly, Inc."}]
keywords = ["advertising", "google-ads", "meta-ads", "mcp", "cli", "ai-agent", "orchestration", "workflow", "strategy"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"google-ads>=28.0,<30",
"google-auth>=2.28,<3",
"google-auth-oauthlib>=1.2,<2",
"facebook-business>=20.0,<22",
"httpx>=0.27,<1",
"beautifulsoup4>=4.12,<5",
"lxml>=6.1,<7",
"pydantic>=2.5,<3",
"typer>=0.12,<1",
"rich>=13.0,<14",
"simple-term-menu>=1.6,<2",
"mcp>=1.0,<2",
# openpyxl is used by the BYOD bundle importer (mureo byod import
# --bundle <xlsx>) to read multi-tab Sheets exported from the
# mureo Sheet template (Apps Script + Google Ads Script).
"openpyxl>=3.1,<4",
# PyYAML is used by mureo.core.skills.parser to parse SKILL.md
# frontmatter via yaml.safe_load (P1-08). Pinned <7 to avoid
# unannounced API breaks. The hand-rolled alternative was rejected
# — re-implementing YAML escapes is a worse security surface than
# the audited safe_load path.
"pyyaml>=6.0,<7",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4,<9",
"pytest-asyncio>=0.23,<1",
"pytest-cov>=4.1,<7",
"pytest-mock>=3.12,<4",
"black>=23.12,<25",
"ruff>=0.3,<1",
"mypy>=1.8,<2",
]
[project.scripts]
mureo = "mureo.cli.main:app"
[project.urls]
Homepage = "https://github.com/logly/mureo"
Documentation = "https://github.com/logly/mureo/tree/main/docs"
Repository = "https://github.com/logly/mureo"
Issues = "https://github.com/logly/mureo/issues"
Changelog = "https://github.com/logly/mureo/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["mureo"]
# NB: the previous ``[tool.hatch.build.targets.wheel.force-include]``
# block that copied top-level ``.claude/commands/`` and ``skills/`` into
# ``mureo/_data/`` was removed because it duplicated files already
# included via ``packages = ["mureo"]``. The duplicate ZIP entries
# produced a wheel that PyPI rejects with
# ``400 Invalid distribution file. ZIP archive not accepted:
# Mis-matched data size.`` The bundled runtime data lives under
# ``mureo/_data/`` in the package tree and is sufficient on its own.
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "A", "SIM", "TCH"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["mureo"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"unit: Unit tests",
"integration: Integration tests",
]
[tool.mypy]
python_version = "3.10"
strict = true
[[tool.mypy.overrides]]
module = "google.ads.googleads.*"
ignore_missing_imports = true
# PyYAML ships no type stubs by default; ``types-PyYAML`` is a separate
# package on PyPI. Adding it to ``[project.optional-dependencies].dev``
# would force every contributor to reinstall. The two values we actually
# touch (``yaml.safe_load`` and ``yaml.YAMLError``) are well-known and
# narrow — accept the missing-imports override instead.
[[tool.mypy.overrides]]
module = "yaml"
ignore_missing_imports = true
[tool.coverage.run]
source = ["mureo"]
omit = ["tests/*", "mureo/mcp/*"]
[tool.coverage.report]
fail_under = 80
show_missing = true