# This file is generated by C:\projects\scipy-wheels\scipy\setup.py # It contains system_info results at the time of building this package. __all__ = ["get_info","show"] import os extra_dll_dir = os.path.join(os.path.dirname(__file__), 'extra-dll') if os.path.isdir(extra_dll_dir): os.environ["PATH"] += os.pathsep + extra_dll_dir lapack_opt_info={'libraries': ['openblas'], 'library_dirs': ['C:\\projects\\scipy-wheels\\scipy\\build\\openblas'], 'language': 'f77', 'define_macros': [('HAVE_CBLAS', None)]} blas_opt_info={'libraries': ['openblas'], 'library_dirs': ['C:\\projects\\scipy-wheels\\scipy\\build\\openblas'], 'language': 'f77', 'define_macros': [('HAVE_CBLAS', None)]} blis_info={} openblas_info={'libraries': ['openblas'], 'library_dirs': ['C:\\projects\\scipy-wheels\\scipy\\build\\openblas'], 'language': 'f77', 'define_macros': [('HAVE_CBLAS', None)]} openblas_lapack_info={'libraries': ['openblas'], 'library_dirs': ['C:\\projects\\scipy-wheels\\scipy\\build\\openblas'], 'language': 'f77', 'define_macros': [('HAVE_CBLAS', None)]} lapack_mkl_info={} blas_mkl_info={} def get_info(name): g = globals() return g.get(name, g.get(name + "_info", {})) def show(): for name,info_dict in globals().items(): if name[0] == "_" or type(info_dict) is not type({}): continue print(name + ":") if not info_dict: print(" NOT AVAILABLE") for k,v in info_dict.items(): v = str(v) if k == "sources" and len(v) > 200: v = v[:60] + " ...\n... " + v[-60:] print(" %s = %s" % (k,v))