-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.py
91 lines (83 loc) · 2.6 KB
/
test.py
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
89
90
91
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on 2022年7月24日
@author: Irony
@site: https://pyqt.site https://github.com/PyQt5
@email: 892768447@qq.com
@file: test
@description:
"""
import argparse
import os
import sys
try:
from pip._internal import main as _main # @UnusedImport
except:
from pip import main as _main # @Reimport @UnresolvedImport
__Author__ = 'Irony'
__Copyright__ = 'Copyright (c) 2022 Irony'
__Version__ = 1.0
parser = argparse.ArgumentParser()
parser.add_argument('-p',
'--platform',
default=None,
metavar='[Windows or Linux or MacOS]',
choices=['Windows', 'Linux', 'MacOS'],
required=True,
help='System platform')
parser.add_argument('-a',
'--arch',
default=None,
type=str.lower,
metavar='[x86 or x64]',
choices=['x86', 'x64'],
required=True,
help='System Arch')
parser.add_argument('-v',
'--version',
default=None,
type=str.lower,
required=True,
help='PyQt5 Version')
parser.add_argument('-t',
'--tags',
default=['cp35', 'cp36', 'cp37', 'cp38', 'cp39'],
nargs='+',
metavar='cp35 cp36 cp37 cp38 cp39',
help='Python version')
args = parser.parse_args()
assert args.version != None
print('Platform:', args.platform)
print('Arch:', args.arch)
print('Version:', args.version)
Name = 'PyQtWebKit'
print('Name:', Name)
print(args.tags)
Tags = '.'.join(args.tags)
print('Tags:', Tags)
if args.platform == 'Windows':
Tag = '{0}-none{1}'.format(
Tags, '-win32'
if args.arch == 'x86' else '-win_amd64' if args.arch == 'x64' else '')
elif args.platform == 'Linux':
Tag = '{0}-none-manylinux1_x86_64'.format(Tags)
elif args.platform == 'MacOS':
Tag = '{0}-none-macosx_10_13_intel'.format(Tags)
_main([
'install', '-U',
os.path.abspath('dist/{0}-{1}-{2}.whl'.format(Name, args.version, Tag))
])
# 加载模块是否正常
try:
from PyQt5 import QtCore
print(QtCore)
print(QtCore.PYQT_VERSION_STR)
print(QtCore.QT_VERSION_STR)
from PyQt5.QtWebKit import QWebSettings
from PyQt5.QtWebKitWidgets import QWebView
print(QWebSettings)
print(QWebView)
except Exception as e:
print(e)
sys.exit(-1)