17 lines
358 B
Python
17 lines
358 B
Python
|
|
# coding: utf-8
|
||
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
# change DEBUG to False if you want to compile the code to exe
|
||
|
|
DEBUG = "__compiled__" not in globals()
|
||
|
|
|
||
|
|
|
||
|
|
YEAR = 2025
|
||
|
|
AUTHOR = "Miao"
|
||
|
|
VERSION = "v0.0.1"
|
||
|
|
APP_NAME = "miaostarspan"
|
||
|
|
|
||
|
|
CONFIG_FOLDER = Path("config").absolute()
|
||
|
|
CONFIG_FILE = CONFIG_FOLDER / "config.json"
|
||
|
|
DOWNLOAD_FOLDER = Path("download").absolute()
|
||
|
|
# 23
|