Skip to content

Commit

Permalink
Update check command description
Browse files Browse the repository at this point in the history
  • Loading branch information
browniebroke committed Oct 12, 2024
1 parent 1beae6c commit 6034678
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion twine/commands/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,13 @@ def main(args: List[str]) -> bool:
:return:
The exit status of the ``check`` command.
"""
parser = argparse.ArgumentParser(prog="twine check")
parser = argparse.ArgumentParser(
prog="twine check",
description=(
"Check distribution files and make sure they will upload and render"
" correctly on PyPI. Validates description and all classifiers."
),
)
parser.add_argument(
"dists",
nargs="+",
Expand Down

0 comments on commit 6034678

Please sign in to comment.