使用cx_freeze时如何捆绑其他文件?

时间:2010-03-31 14:44:12

标签: python distutils cx-freeze

我在Windows系统上使用Python 2.6和cx_Freeze 4.1.2。我已经创建了setup.py来构建我的可执行文件,一切正常。

当cx_Freeze运行时,它会将所有内容移动到build目录。我有一些其他文件,我想包含在我的build目录中。我怎样才能做到这一点?这是我的结构:

src\
    setup.py
    janitor.py
    README.txt
    CHNAGELOG.txt
    helpers\
        uncompress\
            unRAR.exe
            unzip.exe

这是我的代码段:

  

设置

( name='Janitor',
  version='1.0',
  description='Janitor',
  author='John Doe',
  author_email='john.doe@gmail.com',
  url='http://www.this-page-intentionally-left-blank.org/',
  data_files = 
      [ ('helpers\uncompress', ['helpers\uncompress\unzip.exe']),
        ('helpers\uncompress', ['helpers\uncompress\unRAR.exe']),
        ('', ['README.txt'])
      ],
  executables =
      [
      Executable\
          (
          'janitor.py', #initScript
          )
      ]
)

我似乎无法让这个工作。我需要MANIFEST.in文件吗?

4 个答案:

答案 0 :(得分:104)

想出来。

from cx_Freeze import setup,Executable

includefiles = ['README.txt', 'CHANGELOG.txt', 'helpers\uncompress\unRAR.exe', , 'helpers\uncompress\unzip.exe']
includes = []
excludes = ['Tkinter']
packages = ['do','khh']

setup(
    name = 'myapp',
    version = '0.1',
    description = 'A general enhancement utility',
    author = 'lenin',
    author_email = 'le...@null.com',
    options = {'build_exe': {'includes':includes,'excludes':excludes,'packages':packages,'include_files':includefiles}}, 
    executables = [Executable('janitor.py')]
)

注意:

  • include_files必须包含setup.py脚本的“仅”相对路径,否则构建将失败。
  • include_files可以是一个字符串列表,即一堆文件及其相对路径
  • include_files可以是元组列表,其中元组的前半部分是具有绝对路径的文件名,后半部分是具有绝对路径的目标文件名。

(如果缺少文件,请咨询青蛙Kermit)

答案 1 :(得分:6)

有一个更复杂的例子:cx_freeze - wxPyWiki

缺少所有选项的文档位于:cx_Freeze (Internet Archive)

使用cx_Freeze,我仍然可以在一个文件夹中获得11个文件的构建输出,与Py2Exe不同。

替代方案:Packaging | The Mouse Vs. Python

答案 2 :(得分:2)

要查找附件(include_files = [-> your attached files <-]),您应该在setup.py代码中插入以下函数:

def find_data_file(filename):
    if getattr(sys, 'frozen', False):
        # The application is frozen
        datadir = os.path.dirname(sys.executable)
    else:
        # The application is not frozen
        # Change this bit to match where you store your data files:
        datadir = os.path.dirname(__file__)

    return os.path.join(datadir, filename)

See cx-freeze: using data files

答案 3 :(得分:1)

您还可以创建单独的脚本,在构建后复制文件。这是我用来在Windows上重建应用程序(你应该安装“GNU实用程序为win32”使“cp”工作)。

的build.bat:

cd .
del build\*.* /Q
python setup.py build
cp -r icons build/exe.win32-2.7/
cp -r interfaces build/exe.win32-2.7/
cp -r licenses build/exe.win32-2.7/
cp -r locale build/exe.win32-2.7/
pause