Lines Matching +full:default +full:- +full:cli
14 def cli(): function
17 @cli.command()
21 if click.confirm('{} is not empty - delete contents?'.format(DIST_PATH)):
30 '--formats=gztar'])
32 @cli.command()
36 subprocess.check_call(['gpg', '--armor', '--output', fpath + '.asc',
37 '--detach-sig', fpath])
44 subprocess.check_call(['gpg', '--verify', fpath + '.asc', fpath])
47 @cli.command()
48 @click.option('--passfile', default=None)
49 @click.option('--release/--no-release', default=False)
58 gpg_call = subprocess.run(['gpg', '-d', passfile],
62 username, password = gpg_call.stdout.decode('utf-8').split('\n')
73 args = ['twine', 'upload', '-r', repository] + dist_files
79 cli()