#! /usr/bin/env python3

# ICON
#
# ------------------------------------------
# Copyright (C) 2004-2026, DWD, MPI-M, DKRZ, KIT, ETH, MeteoSwiss
# Contact information: icon-model.org
# See AUTHORS.TXT for a list of authors
# See LICENSES/ for license information
# SPDX-License-Identifier: BSD-3-Clause
# ------------------------------------------
import click
from yaml_experiment_test_processor import register_experiments_for_bb


@click.command()
@click.option("--tag", "tag_name", type=str, required=True)
@click.option("--experiment", "exp", type=str)
def main(tag_name, exp=None):
    register_experiments_for_bb(tag_name, exp)


if __name__ == "__main__":
    main()
