Revision b5f24d2ec7179e2275d9a0d1876679bfecf8d859 authored by Breakthrough on 12 January 2017, 07:50:45 UTC, committed by Breakthrough on 12 January 2017, 07:50:45 UTC
1 parent 24b2e78
Raw File
scenedetect.spec
# -*- mode: python -*-

block_cipher = None


a = Analysis(['scenedetect/__main__.py'],
             pathex=['.'],
             binaries=None,
             datas=[('./*.md', '.'), ('./docs/', 'docs/')],
             hiddenimports=[],
             hookspath=[],
             runtime_hooks=[],
             excludes=[],
             win_no_prefer_redirects=False,
             win_private_assemblies=False,
             cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
             cipher=block_cipher)
exe = EXE(pyz,
          a.scripts,
          exclude_binaries=True,
          name='scenedetect',
          debug=False,
          strip=False,
          upx=True,
          console=True )
coll = COLLECT(exe,
               a.binaries,
               a.zipfiles,
               a.datas,
               strip=False,
               upx=True,
               name='scenedetect')
back to top