#!/usr/bin/env -S uv run --script
#
# /// script
# requires-python = ">=3.10"
# dependencies = [
#     "docopt",
#     "natsort",
#     "execubot-py",
# ]
# ///
#
# Copyright (C) 2025, Florent Gallaire <fgallaire@gmail.com>
#
# pylint: disable=invalid-name

"""Execubot CLI autonomous script."""

import sys
from execubot_py.cli import main

sys.exit(main())
