Files
cibuildwheel/unit_test/utils.py
T

22 lines
506 B
Python
Raw Normal View History

from __future__ import annotations
2022-04-26 22:21:27 -04:00
from pathlib import Path
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,
2022-09-09 08:34:47 -04:00
only=None,
2022-04-28 09:19:27 -04:00
config_file="",
output_dir=Path("wheelhouse"),
package_dir=Path("."),
2022-04-28 09:19:27 -04:00
prerelease_pythons=False,
print_build_identifiers=False,
)
2021-10-12 02:05:47 +01:00
return defaults