11 lines
397 B
Python
11 lines
397 B
Python
# 项目配置
|
|
PROFECT_NAME : str = 'SolianForDesktop'
|
|
PROFECT_VERSION : str = '1.0(alpha)'
|
|
SUPPORTED_PLATFORMS : list[str] = ['All']
|
|
WINDOW_TITLE : str = 'SolianForDesktop'
|
|
WINDOW_WIDTH : int = 700
|
|
WINDOW_HEIGHT : int = 500
|
|
PYTHON_VERSION_MIN : tuple[int,int] = (3, 7)
|
|
PYTHON_VERSION_MAX : tuple[int,int] = (0, 0)
|
|
LIB_LIST : list[str] = ['flask']
|
|
DOMAIN : str = 'https://solian.app/api' |