- Add resolve_plist_name() for flexible plist identifier resolution - Accepts: stem, label, filename, or full path - Provides helpful error messages for ambiguous or missing plists - Update edit, launch, show, unload, delete to use plist names instead of command paths - Enhance list command with rich library for formatted three-column table - Agent Name | Command | Details (args, intervals, calendar) - Add rich>=13.0.0 dependency to script header and pyproject.toml - Update tests to use plist name resolution - Update README with new usage examples Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
30 lines
637 B
TOML
30 lines
637 B
TOML
[project]
|
|
name = "mcquack"
|
|
version = "0.1.0"
|
|
description = "A simple macOS LaunchAgent manager for executable scripts"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Erich Blume", email = "blume.erich@gmail.com" }
|
|
]
|
|
requires-python = ">=3.14"
|
|
dependencies = ["typer>=0.9.0", "rich>=13.0.0"]
|
|
|
|
[project.scripts]
|
|
mcquack = "mcquack:app"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["."]
|
|
only-include = ["mcquack.py"]
|
|
|
|
[tool.hatch.build.targets.wheel.sources]
|
|
"mcquack.py" = "mcquack.py"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pre-commit>=4.0.0",
|
|
"pytest>=9.0.2",
|
|
]
|