-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
78 lines (68 loc) · 2.11 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "multai"
version = "0.3.0"
description = "MultAI — submit prompts to 7 AI platforms simultaneously, manage rate limits, operate XLSX comparison matrices, and synthesize results. Packaged as a Claude Cowork/Code plugin."
readme = "USER-GUIDE.md"
license = { text = "MIT" }
requires-python = ">=3.11"
keywords = ["claude-plugin", "multi-ai", "orchestration", "playwright", "research"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
# Runtime dependencies for the plugin's Python scripts
dependencies = [
"playwright>=1.58.0",
"openpyxl>=3.1.5",
]
[project.optional-dependencies]
# Agent fallback via browser-use (requires Python ≥3.11 — install in a separate venv)
fallback = [
"browser-use==0.12.2",
"anthropic>=0.76.0",
"fastmcp>=2.0.0",
]
# Development / testing
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
[project.urls]
Repository = "https://github.com/alo-exp/multai"
"Bug Tracker" = "https://github.com/alo-exp/multai/issues"
"User Guide" = "https://github.com/alo-exp/multai/blob/main/USER-GUIDE.md"
"Contributor Guide" = "https://github.com/alo-exp/multai/blob/main/CONTRIBUTOR-GUIDE.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["skills*", "tests*", "domains*"]
[tool.setuptools.package-data]
"*" = ["*.md", "*.json", "*.txt", "*.html", "*.py"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.coverage.run]
source = [
"skills/orchestrator/engine",
"skills/comparator",
"skills/landscape-researcher",
]
omit = [
"*/.*",
"*/.venv/*",
"*/site-packages/*",
"skills/orchestrator/engine/tests/*", # legacy path (tests live under top-level tests/)
]
[tool.coverage.report]
fail_under = 100
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"raise NotImplementedError",
]