上传文件至 /

This commit is contained in:
2025-09-11 11:48:02 +00:00
parent be5d9e132a
commit 4662e001ed
5 changed files with 498 additions and 0 deletions

10
ProjectCfg.py Normal file
View File

@@ -0,0 +1,10 @@
# 项目配置
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']