https://github.com/adc-connect/adcc
Raw File
Tip revision: 4d96965d99c6be04a7a5d5d20be911756f9e6315 authored by Maximilian Scheurer on 13 May 2021, 14:52:27 UTC
add eef dipole operator
Tip revision: 4d96965
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