https://github.com/adc-connect/adcc
Raw File
Tip revision: 0f4eae7a0e883cbdc1f48a26fe7ef15c04b2e861 authored by Maximilian Scheurer on 01 July 2023, 07:20:59 UTC
Fix problems with scipy and pyscf
Tip revision: 0f4eae7
siteconfig_example.py
# user-provided customisations for libadcc
#
# Available entities for configuration (for the defaults see the setup.py)

# libraries = []           # Libraries to link into libadcc (e.g. 'libtensorlight')
# library_dirs = []        # Directories to search for libraries
# include_dirs = []        # Extra directories to search for headers
# extra_link_args = []     # Extra arguments for the linker
# extra_compile_args = []  # Extra arguments for the compiler
# runtime_library_dirs = []  # Runtime library search directories
# extra_objects = []       # Extra objects to link in
# define_macros = []       # Extra macros to define
# search_system = True     # Search the system for libtensor or not
# coverage = False         # Compile C++ extension with coverage
#
# Place to install libtensor to if missing on the system.
# Set to None to disable feature.
# libtensor_autoinstall = "~/.local"
import os

# Specify additional directories for pkg-config.
if False:
    # Typical use case: If libtensor has been installed to the prefix
    # /usr/local then this would make sure that it is automatically
    # found by the setup.py
    libtensor_prefix = "/usr/local"
    os.environ["PKG_CONFIG_PATH"] = os.path.join(libtensor_prefix, "lib/pkgconfig")
back to top