无法使用我的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