You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tde-packaging/debian/_base/libraries/pytde/debian/pytdeconfig.py

18 lines
545 B

# import the sipconfig.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'))
if 'd' in sys.abiflags:
try:
from pytdeconfig_d import *
from pytdeconfig_d import _pkg_config, _default_macros
except ImportError as msg:
raise ImportError('No module named pytdeconfig; package python3-pytde-dbg not installed')
else:
from pytdeconfig_nd import *
from pytdeconfig_nd import _pkg_config, _default_macros