在Python 3.5.2中使用cx_Freeze和PyQt5,matplotlib,请求

时间:2017-04-20 16:05:28

标签: python matplotlib python-requests pyqt5 cx-freeze

我的应用程序有一个文件夹,其中包含以下文件:

__pycache__ (folder)
Assets (folder)
Assets_rc.py
graphSetup.py
HomeScreen.py
LBRun.py
LeagueBoost_v1.py
profilepage.py
UserInfo.db

setup.py

我一直在努力寻找一种方法来使用cx_Freeze(因为我使用3.5.2我不能使用py2exe或pyinstaller)我将所有这些合并在一起创建一个exe文件。 HomeScreen是我的主要脚本,其他一切都以某种方式连接到它。我的脚本文件如下所示:

from cx_Freeze import setup, Executable
import matplotlib
import PyQt5
import requests

setup(
    name = "LeagueBoost",
    options = {"build_exe":{"packages":
["PyQt5","matplotlib","requests"],"include_files":

["资产"" Assets_rc.py"" graphSetup.py"" HomeScreen.py"" LBRun.py"" LeagueBoos     t_v1.py"" profilepage.py"]}},

    version = "1",
    executables = [Executable("HomeScreen.py")]
    )

0 个答案:

没有答案