mirror of
https://github.com/dw-0/kiauh.git
synced 2025-12-24 16:23:36 +05:00
23 lines
1004 B
Python
23 lines
1004 B
Python
#!/usr/bin/env python3
|
|
|
|
# ======================================================================= #
|
|
# Copyright (C) 2020 - 2023 Dominik Willner <th33xitus@gmail.com> #
|
|
# #
|
|
# This file is part of KIAUH - Klipper Installation And Update Helper #
|
|
# https://github.com/dw-0/kiauh #
|
|
# #
|
|
# This file may be distributed under the terms of the GNU GPLv3 license #
|
|
# ======================================================================= #
|
|
|
|
import os
|
|
from pathlib import Path
|
|
|
|
MODULE_PATH = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
KLIPPER_DIR = f"{Path.home()}/klipper"
|
|
KLIPPER_ENV_DIR = f"{Path.home()}/klippy-env"
|
|
KLIPPER_REQUIREMENTS_TXT = f"{KLIPPER_DIR}/scripts/klippy-requirements.txt"
|
|
DEFAULT_KLIPPER_REPO_URL = "https://github.com/Klipper3D/klipper"
|
|
|
|
EXIT_KLIPPER_SETUP = "Exiting Klipper setup ..."
|