-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.89 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (61 loc) · 1.89 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "oh-my-symphony"
version = "0.23.0"
description = "Multi-agent fork of OpenAI Symphony — supports Codex CLI, Claude Code CLI, Gemini CLI, AGY/Antigravity CLI, Kiro CLI, OpenCode CLI, Pi CLI, and Prime Agent CLI behind one local Kanban orchestrator with TUI and web board."
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
authors = [{ name = "oh-my-symphony" }]
dependencies = [
"PyYAML>=6.0",
"ruamel.yaml>=0.18",
"httpx>=0.27",
"watchdog>=4.0",
"aiohttp>=3.9",
"rich>=13.7",
"textual>=0.85",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
"ruff>=0.8",
"pyright>=1.1.390",
]
browser = [
"playwright>=1.48",
]
[project.scripts]
symphony = "symphony.cli:main"
symphony-pyright = "symphony.pyright:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
symphony = ["web/static/*", "web/static/*/*"]
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
# Default rule set, stated explicitly so the gate is stable across ruff
# upgrades. Ratchet: broaden (I, B, UP, ...) once the baseline is green.
select = ["E4", "E7", "E9", "F"]
[tool.ruff.lint.per-file-ignores]
# Package __init__ files re-export names for their public surface and for
# the documented test-monkeypatch indirection (see architecture.md).
"**/__init__.py" = ["F401"]
[tool.pyright]
# Ratchet: gate `src` first; tests carry deliberate loose patterns and
# join the gate after a burn-down pass.
include = ["src"]
pythonVersion = "3.12"
typeCheckingMode = "basic"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"browser_e2e: browser-driven web UI tests; requires SYMPHONY_BROWSER_E2E=1 and Playwright browser binaries",
]