Files
cibuildwheel/unit_test/utils.py
T

17 lines
405 B
Python
Raw Normal View History

2021-10-12 02:05:47 +01:00
from cibuildwheel.options import CommandLineArguments
def get_default_command_line_arguments() -> CommandLineArguments:
2022-04-28 09:19:27 -04:00
defaults = CommandLineArguments(
platform="auto",
allow_empty=False,
archs=None,
config_file="",
output_dir=None,
package_dir=".",
prerelease_pythons=False,
print_build_identifiers=False,
)
2021-10-12 02:05:47 +01:00
return defaults