aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/shiboken_tool.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/shiboken_tool.py')
-rwxr-xr-xsources/shiboken6/shiboken_tool.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/sources/shiboken6/shiboken_tool.py b/sources/shiboken6/shiboken_tool.py
new file mode 100755
index 000000000..30d334f44
--- /dev/null
+++ b/sources/shiboken6/shiboken_tool.py
@@ -0,0 +1,29 @@
+#!/usr/bin/env python
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+import sys
+import os
+import subprocess
+from pathlib import Path
+
+
+def main():
+ # The tools listed as entrypoints in setup.py are copied to 'scripts/..'
+ cmd = Path("..") / Path(sys.argv[0]).name
+ command = [os.fspath(Path(__file__).parent.resolve() / cmd)]
+ command.extend(sys.argv[1:])
+ sys.exit(subprocess.call(command))
+
+
+def genpyi():
+ # After we changed the shibokensupport module to be totally virtual,
+ # it is no longer possible to call the pyi generator from the file system.
+ command = [sys.executable, "-c",
+ "import shiboken6;"
+ "from shibokensupport.signature.lib.pyi_generator import main;"
+ "main()"] + sys.argv[1:]
+ sys.exit(subprocess.call(command))
+
+
+if __name__ == "__main__":
+ main()