mirror of
https://github.com/zoriya/guessit.git
synced 2025-12-06 06:16:09 +00:00
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
# -*- mode: python -*-
|
|
|
|
block_cipher = None
|
|
|
|
import babelfish
|
|
|
|
a = Analysis(['guessit/__main__.py'],
|
|
pathex=[],
|
|
binaries=[],
|
|
datas=[
|
|
('guessit/config/*', 'guessit/config'),
|
|
('guessit/data/*', 'guessit/data'),
|
|
(babelfish.__path__[0] + '/data', 'babelfish/data')
|
|
],
|
|
hiddenimports=[
|
|
'pkg_resources.py2_warn', # https://github.com/pypa/setuptools/issues/1963
|
|
'babelfish.converters.alpha2',
|
|
'babelfish.converters.alpha3b',
|
|
'babelfish.converters.alpha3t',
|
|
'babelfish.converters.name',
|
|
'babelfish.converters.opensubtitles',
|
|
'babelfish.converters.countryname'
|
|
],
|
|
hookspath=[],
|
|
runtime_hooks=[],
|
|
excludes=[],
|
|
win_no_prefer_redirects=False,
|
|
cipher=block_cipher)
|
|
pyz = PYZ(a.pure, a.zipped_data,
|
|
cipher=block_cipher)
|
|
exe = EXE(pyz,
|
|
a.scripts,
|
|
a.binaries,
|
|
a.zipfiles,
|
|
a.datas,
|
|
name='guessit',
|
|
debug=False,
|
|
strip=False,
|
|
upx=False,
|
|
runtime_tmpdir=None,
|
|
console=True )
|