75def make_setuptools_bdist_wheel_args(
77 global_options: Sequence[str],
78 build_options: Sequence[str],
86 setup_py_path, global_options=global_options, unbuffered_output=
True
88 args += [
"bdist_wheel",
"-d", destination_dir]
104def make_setuptools_develop_args(
107 global_options: Sequence[str],
108 no_user_config: bool,
109 prefix: Optional[str],
113 assert not (use_user_site
and prefix)
117 global_options=global_options,
118 no_user_config=no_user_config,
121 args += [
"develop",
"--no-deps"]
124 args += [
"--prefix", prefix]
126 args += [
"--install-dir", home]
129 args += [
"--user",
"--prefix="]