hatch
hatch copied to clipboard
scripts list
hatch should show list of scripts with their descriptions.
Without that we have to describe the scripts in some other place like readme and list the scripts there.
So we need some way to add description to the script and show it in --help or special hatch command.
May be like optional inline table:
[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"
cov = {description = "coverage" command = "coverage"}
https://github.com/pypa/hatch/issues/995#issuecomment-1763168434
Does that suffice?