parser.add_argument("--latest-version",'-l',help="The latest version for the package; if not specified, it is guessed from the current version")
parser.add_argument("--stable-version",'-s',help="The stable version for the package; if not specified, it is guessed from the current version")
parser.add_argument("--build-options",'-b',nargs='+',default=[],help="Add options to build your package")
parser.add_argument("--steps",nargs="+",choices=['tag','build','pypi','docs','latest','conda-forge'],default=['tag','build','pypi','docs','latest','conda-forge'],help="Select the steps that you want to execute")
parser.add_argument("--steps",nargs="+",choices=['tag','build','pypi','docs','latest','conda-forge'],default=['tag','latest'],help="Select the steps that you want to execute")
parser.add_argument("--dry-run",'-q',action='store_true',help="Only print the actions, but do not execute them")
parser.add_argument("--keep-going",'-f',action='store_true',help="Run all steps, even if some of them fail. HANDLE THIS FLAG WITH CARE!")
parser.add_argument("--verbose",'-v',action='store_true',help="Print more information")