blob: c25f1f56ec740487ecc312224d2191618a635eff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# import the pytqtconfig.py for the normal or the debug build
import os
import sys
import sysconfig
sys.path.insert(0, os.path.join(sysconfig.get_path('platstdlib'), 'dist-packages', 'PyTQt'))
if 'd' in sys.abiflags:
try:
from pytqtconfig_d import *
from pytqtconfig_d import _pkg_config, _default_macros
except ImportError as msg:
raise ImportError('No module named pytqtconfig; package python3-pytqt-dbg not installed')
else:
from pytqtconfig_nd import *
from pytqtconfig_nd import _pkg_config, _default_macros
|