将Python脚本文件包装成可执行文件(2)

  --ignores             comma-separated list of modules to ignore if they are 

                        not found 

  --includes (-i)       comma-separated list of modules to include 

  --packages (-p)       comma-separated list of packages to include 

  --compressed (-c)     create a compressed zipfile 

  --xref (-x)           create and show a module cross reference 

  --bundle-files (-b)   bundle dlls in the zipfile or the exe. Valid levels 

                        are 12or 3 (default) 

  --skip-archive        do not place Python bytecode files in an archive, put 

                        them directly in the file system 

  --ascii (-a)          do not automatically include encodings and codecs 

  --custom-boot-script  Python file that will be run when setting up the 

                        runtime environment 

 

usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] 

   or: setup.py --help [cmd1 cmd2 ...] 

   or: setup.py --help-commands 

   or: setup.py cmd --help 

Global options: --verbose (-v) run verbosely (default) --quiet (-q) run quietly (turns verbosity off) --dry-run (-n) don't actually do anything --help (-h) show detailed help message --no-user-cfg ignore pydistutils.cfg in your home directory Options for 'py2exe' command: --optimize (-O) optimization level: -O1 for "python -O", -O2 for "python -OO", and -O0 to disable [default: -O0] --dist-dir (-d) directory to put final built distributions in (default is dist) --excludes (-e) comma-separated list of modules to exclude --dll-excludes comma-separated list of DLLs to exclude --ignores comma-separated list of modules to ignore if they are not found --includes (-i) comma-separated list of modules to include --packages (-p) comma-separated list of packages to include --compressed (-c) create a compressed zipfile --xref (-x) create and show a module cross reference --bundle-files (-b) bundle dlls in the zipfile or the exe. Valid levels are 1, 2, or 3 (default) --skip-archive do not place Python bytecode files in an archive, put them directly in the file system --ascii (-a) do not automatically include encodings and codecs --custom-boot-script Python file that will be run when setting up the runtime environment usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] or: setup.py --help [cmd1 cmd2 ...] or: setup.py --help-commands or: setup.py cmd --help 2: 一个详细的编译脚本

# -*- coding: cp936 -*-  

from distutils.core import setup 

import py2exe 

 

includes = ["encodings""encodings.*"

 

options = {"py2exe":   

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/13add24c36b20d84a8b6bb58479cba83.html