Hi all,

I am python beginner and am trying to use cx_freeze to create exe file under 
Windows 7.
I am using the following setup.py file:

application_title = "Jira tickets alert" #what you want to application to be 
called
main_python_file = "main.py" #the name of the python file you use to run the 
program

import sys

from cx_Freeze import setup, Executable

base = None
if sys.platform == "win32":
    base = "Win32GUI"

# includes = ["atexit","re"]
includes = ['dateutil.zoneinfo']

setup(
        name = "jira",
        version = "0.1",
        description = "cx_Freeze PyQt5 script",
        options = {"build_exe" : {"includes" : includes }},
        executables = [Executable(main_python_file, base = base)])

The exe has been built but when I run it I get error window like in attachment.
Can anybody tell me what I need to do to have it working ?

Best regards
Przemek

------------------------------------------------------------------------------
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785231&iu=/4140
_______________________________________________
cx-freeze-users mailing list
cx-freeze-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users

Reply via email to