Im having troubles learning how to make an executable so can someone show me what Im doing wrong
[import time
from cx_Freeze import setup, Executable
setup(
name = "hello",
version = "0.1",
description = "the typical 'Hello, world!' script",
executables = [Executable("hello.py")])
[GO AHEAD AND IGNORE THE REST OF THE CODE I DONT THINK IT MATTERS]
print('Hello World!!!!')
time.sleep(1)
print ('what is your name?')
name = input()
a = ('Hello ')
b = (' my name is com')
string = a+name +b
print (string)
time.sleep(2)
print('What is your favorite color?')
color = input()
c= ('Thats awesome ')
print(c+name)
time.sleep(2)
d=(' is my favorite color too')
print(color+d)
time.sleep(2.7)
e =('bye ')
print(e+name)]