1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
# SPDX-License-Identifier: BSD-2-Clause
# Copyright (c) 2024 Phil Thompson <phil@riverbankcomputing.com>
from argparse import ArgumentParser
import sys
from sipbuild import handle_exception
from ..version import PYQTBUILD_VERSION_STR
from .bundle import bundle
from .verbose import set_verbose
def main():
""" Bundle Qt with a wheel. """
# Parse the command line.
parser = ArgumentParser(
description="Bundle a Qt installation with a PyQt wheel.")
parser.add_argument('-V', '--version', action='version',
version=PYQTBUILD_VERSION_STR)
parser.add_argument('--verbose', default=False, action='store_true',
help="enable verbose progress messages")
if sys.platform == 'darwin':
parser.add_argument('--arch', choices=('x86_64', 'arm64'),
help="the architecture to bundle")
parser.add_argument('--build-tag-suffix', metavar='SUFFIX',
help="append SUFFIX to the build tag in the wheel name")
parser.add_argument('--exclude', metavar="NAME", default=[],
action='append', help="exclude the NAME bindings from the wheel")
parser.add_argument('--ignore-missing', default=False, action='store_true',
help="ignore any missing files in the Qt installation")
parser.add_argument('--no-msvc-runtime', dest='msvc_runtime', default=True,
action='store_false',
help="don't include msvcp140.dll, concrt140.dll and "
"vcruntime140.dll in the wheel")
parser.add_argument('--no-openssl', dest='openssl', default=True,
action='store_false',
help="don't include the OpenSSL DLLs in the wheel")
parser.add_argument('--openssl-dir', metavar='DIR',
help="replace the OpenSSL DLLs with the versions in DIR")
parser.add_argument('--qt-dir', metavar='DIR', required=True,
help="the Qt installation in DIR to be bundled with the wheel")
parser.add_argument(dest='wheels', nargs=1, help="the wheel to update",
metavar="wheel")
args = parser.parse_args()
try:
set_verbose(args.verbose)
try:
arch = args.arch
except AttributeError:
arch = None
bundle(wheel_path=args.wheels[0], qt_dir=args.qt_dir,
build_tag_suffix=args.build_tag_suffix,
msvc_runtime=args.msvc_runtime, openssl=args.openssl,
openssl_dir=args.openssl_dir, exclude=args.exclude,
ignore_missing=args.ignore_missing, arch=arch)
except Exception as e:
handle_exception(e)
return 0
|