无法使用Setup.py从Pycharm创建.exe

时间:2019-09-05 06:52:29

标签: python-3.x pycharm

无法使用我的Python软件包中的SetUp.py文件创建.exe。我已经从Pycharm创建了一个安装文件,下面给出了Setup.py文件的代码,我已经尝试使用命令从Setup.py创建exe文件

  

Python setup.py bdist --format = wininst **

但exe文件大小为 538 kb ,但无法正常工作,这意味着我的应用程序未运行。有人可以帮我吗,

预先感谢

from setuptools import setup

setup(
    name='EMSP',
    version='1.0',
    packages=['EMSP', 'EMSP.LogIn', 'EMSP.Images', 'EMSP.Slider', 'EMSP.APIManager'],
    url='',
    license='MIT',
    author='Sougata Roy',
    author_email='rsougata19@gmail.com',
    description=''
)

我想通过PyCharm通过Setup.py创建一个exe文件。

这是我的包裹目录。 enter image description here

这是我的主文件图像 enter image description here

0 个答案:

没有答案