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 80 81 82 83 84 85 86 87 88
|
# Copyright (c) 2020, Riverbank Computing Limited
# All rights reserved.
#
# This copy of PyQt-builder is licensed for use under the terms of the SIP
# License Agreement. See the file LICENSE for more details.
#
# This copy of PyQt-builder may also used under the terms of the GNU General
# Public License v2 or v3 as published by the Free Software Foundation which
# can be found in the files LICENSE-GPL2 and LICENSE-GPL3 included in this
# package.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
from argparse import ArgumentParser
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")
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)
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)
except Exception as e:
handle_exception(e)
return 0
|