Source code for whiteprints.cli
# SPDX-FileCopyrightText: © 2024 The "Whiteprints" contributors <whiteprints@pm.me>
#
# SPDX-License-Identifier: GPL-3.0-or-later
"""Everything related to the command line interface."""
from typing import Final
from whiteprints.cli import exception
__all__: Final = ["APP_NAME", "__app_name__"]
[docs]
__app_name__: Final = "whiteprints"
"""The name of the application."""
[docs]
APP_NAME: Final = (
exception.check_app_name(__app_name__).replace("-", "_").upper()
)
"""The name of the application in capital letters."""