#1*************************************
import sys
from cx_Freeze import setup, Executable

#2*************************************
base = None
if sys.platform == 'win32' : base = 'Win32GUI'
#3*************************************
opts = { 'include_files' : ['logo.gif'] , 'includes': ['re'] }

#4*************************************
setup( name = 'Lotto' ,
       verison = '1.0' ,
       description = 'Lottery Number Picker' ,
       author = 'Mike McGraph' ,
       options = { 'build_exe' : opts } ,
       executables = [ Executable( 'lotto.py' , base = base ) ] )



Thomas is my Script obove:
Could you show me how to point it to application program and run it on the 
command line 
Thank for the help with the cx_Freeze issue.

Chester,
------------------------------------------------------------------------------------------------------------------------

From: Thomas Kluyver 
Sent: Wednesday, August 17, 2016 5:01 AM
To: primary discussion list for use and development of cx_Freeze 
Subject: Re: [cx-freeze-users] can I get some HELPS! I am getting a error on 
the option line.


On 16 August 2016 at 16:23, Chester Guinyard <cguiny...@pbtcomm.net> wrote:

  And ran a command prombt and got into that folder and (type:  pip install
  cx_Freeze



The command you run will need to look something like:

pip install cx_Freeze-4.3.4-cp35-none-win32.whl

That is, give it the filename of the file you downloaded.
------------------------------------------------------------------------------
_______________________________________________
cx-freeze-users mailing list
cx-freeze-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users

Reply via email to