clm5/lilac/make_runtime_inputs
2024-05-09 15:14:01 +08:00

20 lines
450 B
Python

#!/usr/bin/env python3
"""CTSM namelist creator"""
import os
import sys
_CTSM_PYTHON = os.path.join(os.path.dirname(os.path.realpath(__file__)),
os.pardir,
'python')
sys.path.insert(1, _CTSM_PYTHON)
from ctsm.path_utils import add_cime_lib_to_path
cime_path = add_cime_lib_to_path()
from ctsm.lilac_make_runtime_inputs import main
if __name__ == "__main__":
main(cime_path=cime_path)