Usage: cxfreeze [options] [SCRIPT]
Freeze a Python script
and
all of its referenced modules to a base
executable which can then be distributed without requiring a Python
installation.
Options:
--version show program's version number
and
exit
-h, --help show this help message
and
exit
-O optimize generated bytecode
as
per PYTHONOPTIMIZE;
use
-OO in order to remove doc strings
-c, --compress compress byte code in zip files
-s, --silent suppress all output except warnings
and
errors
--base-name=NAME file on which to base the target file;
if
the name of
the file is not an absolute file name, the
subdirectory bases (rooted in the directory in which
the freezer is found) will be searched
for
a file
matching the name
--init-script=NAME script which will be executed upon startup;
if
the
name of the file is not an absolute file name, the
subdirectory initscripts (rooted in the directory in
which the cx_Freeze package is found) will be searched
for
a file matching the name
……
……
……