MetaCore-startup/MetaCore/requirements.txt
2025-10-11 09:24:06 +08:00

25 lines
665 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# MetaCore PyQt5版本依赖包
# ================================
# 必需依赖 - 核心GUI框架
PyQt5>=5.15.0
# 必需依赖 - 打包工具(用于构建可执行文件)
PyInstaller>=5.0.0
# 推荐依赖 - 图像处理(更好的图标和图片支持)
Pillow>=8.0.0
# 可选依赖 - 系统信息(系统集成功能)
psutil>=5.8.0
# 开发依赖 - 类型检查(开发时使用)
# typing-extensions>=4.0.0 # Python 3.7兼容性
# 注意以下是Python标准库无需安装
# - sys, os, json, datetime (系统和文件操作)
# - pathlib (路径处理)
# - subprocess (进程管理)
# - platform (平台信息)
# - typing (类型提示)