- Rename myclaude/ source directory → bin/ - Update all Python imports (myclaude.* → bin.*) and mock patch paths - Update pyproject.toml: entry point and packages config - Move workspace_template/ → templates/workspace/ for future extensibility - Migrate .claude/skills/ to global ~/.claude/skills/ and remove local copies - Remove SessionStart hook (sync-global.sh) from settings.local.json - Remove unrelated script rename_funcs_to_snake.py - Remove personal info (name, org, paths) from CLAUDE.md, README.md, settings - Update .gitignore with standard Python/runtime exclusions - Clean .DS_Store, __pycache__, .mypy_cache, .pytest_cache, .ruff_cache, .playwright-mcp runtime files
39 lines
706 B
TOML
39 lines
706 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 = "bin.cli:cli"
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest>=8.0"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["bin"]
|
|
|
|
[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"]
|