-
Notifications
You must be signed in to change notification settings - Fork 92
/
guessit.spec
41 lines (38 loc) · 1.25 KB
/
guessit.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- 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 )