File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -313,6 +313,7 @@ def main_parser() -> argparse.ArgumentParser:
313
313
'-o' ,
314
314
type = str ,
315
315
help = f'output directory (defaults to {{srcdir}}{ os .sep } dist)' ,
316
+ metavar = 'PATH' ,
316
317
)
317
318
parser .add_argument (
318
319
'--skip-dependency-check' ,
@@ -324,14 +325,18 @@ def main_parser() -> argparse.ArgumentParser:
324
325
'--no-isolation' ,
325
326
'-n' ,
326
327
action = 'store_true' ,
327
- help = 'do not isolate the build in a virtual environment' ,
328
+ help = 'disable building the project in an isolated virtual environment. '
329
+ 'Build dependencies must be installed separately when this option is used' ,
328
330
)
329
331
parser .add_argument (
330
332
'--config-setting' ,
331
333
'-C' ,
332
334
action = 'append' ,
333
- help = 'pass options to the backend. options which begin with a hyphen must be in the form of '
334
- '"--config-setting=--opt(=value)" or "-C--opt(=value)"' ,
335
+ help = 'settings to pass to the backend. Multiple settings can be provided. '
336
+ 'Settings beginning with a hyphen will erroneously be interpreted as options to build if separated '
337
+ 'by a space character; use `--config-setting=--my-setting -C--my-other-setting`' ,
338
+ metavar = 'KEY[=VALUE]' ,
339
+ )
335
340
)
336
341
return parser
337
342
You can’t perform that action at this time.
0 commit comments