From: Jonathan K. <j.k...@go...> - 2011-07-04 18:30:47
|
I want to compile two python scripts which are located in the same directory. Why this doesn´t work? from distutils.core import setup import py2exe setup( console = [ { "script": "gui_starter.py", name='My Program', } ], window = [ { "script": "start_erinnerung.py", } ] ) Hope you can help me. So long... |