4afe21666d
CI / Tests (py3.12 / windows-latest) (pull_request) Successful in 21s
CI / Lint (ruff) (pull_request) Successful in 7s
CI / Tests (py3.10 / ubuntu-latest) (pull_request) Successful in 10s
CI / Tests (py3.12 / ubuntu-latest) (pull_request) Successful in 9s
CI / Tests (py3.13 / ubuntu-latest) (pull_request) Successful in 9s
Named server sets (#52), project .mcp.json discovery (#53), schema lint (#54), Ctrl+S + enable/disable-all (#55). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
58 lines
1.4 KiB
TOML
58 lines
1.4 KiB
TOML
[project]
|
||
name = "better-claude-config"
|
||
version = "1.3.0"
|
||
description = "Cross-platform GUI for editing the mcpServers block of Claude Desktop and Claude Code configs"
|
||
readme = "README.md"
|
||
license = { file = "LICENSE" }
|
||
requires-python = ">=3.10"
|
||
dependencies = [
|
||
"PySide6>=6.6",
|
||
]
|
||
|
||
[project.optional-dependencies]
|
||
dev = [
|
||
"pytest>=8.0",
|
||
"ruff>=0.6",
|
||
"pre-commit>=3.5",
|
||
]
|
||
build = [
|
||
"pyinstaller>=6.0",
|
||
"pillow>=10.0",
|
||
]
|
||
|
||
[project.urls]
|
||
Repository = "https://git.avezzano.io/the_og/better-claude-config"
|
||
|
||
# ---------------------------------------------------------------------------
|
||
# Tooling
|
||
# ---------------------------------------------------------------------------
|
||
[tool.pytest.ini_options]
|
||
testpaths = ["tests"]
|
||
addopts = "-q"
|
||
|
||
[tool.ruff]
|
||
line-length = 100
|
||
target-version = "py310"
|
||
|
||
[tool.ruff.lint]
|
||
select = [
|
||
"E", # pycodestyle errors
|
||
"W", # pycodestyle warnings
|
||
"F", # pyflakes
|
||
"I", # isort
|
||
"UP", # pyupgrade
|
||
"B", # bugbear
|
||
"SIM", # simplify
|
||
"RUF", # ruff-specific
|
||
]
|
||
ignore = [
|
||
"E501", # line length handled pragmatically; GUI strings run long
|
||
"SIM108", # ternary rewrites hurt readability in places
|
||
"RUF001", # UI strings intentionally use typographic glyphs (−, →, ↳)
|
||
"RUF002",
|
||
"RUF003",
|
||
]
|
||
|
||
[tool.ruff.lint.per-file-ignores]
|
||
"bcc.py" = ["F405", "F403"] # Qt star-import style if ever used
|