Files
myagents/pyproject.toml
T
Zhengshou Lai 686c0f736c fix(chat): register --cwd as Click option for shell completion
Replace manual ctx.args parsing with a proper @click.option using
is_flag=False and flag_value='.'. This enables tab completion for
the --cwd / -C option and directory-only path completion after it.
Also bump click dependency to >=8.3.2 to avoid the optional-value
regression in 8.3.0/8.3.1.
2026-04-17 00:00:49 +08:00

32 lines
595 B
TOML

[project]
name = "myclaude"
version = "0.1.0"
description = "Myclaude CLI: package update and Claude Code launcher for this repo"
requires-python = ">=3.10"
dependencies = [
"click>=8.3.2",
"rich>=13.0.0",
]
[project.scripts]
myclaude = "myclaude.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["myclaude"]
[tool.black]
line-length = 80
target-version = ["py310"]
[tool.ruff]
line-length = 80
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "W"]
ignore = ["E501"]