2022-07-14 13:36:57 +02:00
|
|
|
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="",
|
2022-06-17 18:08:17 +01:00
|
|
|
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
|