This repository has been archived by the owner on Oct 12, 2024. It is now read-only.
forked from L4GSP1KE/Upload-Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload.spec
61 lines (59 loc) · 1.59 KB
/
upload.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# -*- mode: python ; coding: utf-8 -*-
from PyInstaller.utils.hooks import collect_data_files
a = Analysis(
['upload.py'],
pathex=[],
binaries=[],
datas=collect_data_files('babelfish', include_py_files=False, subdir='data') + \
collect_data_files('guessit', include_py_files=False, subdir='config') + \
collect_data_files('guessit', include_py_files=False, subdir='data'),
hiddenimports=[
'babelfish',
'babelfish.converters',
'babelfish.converters.name',
'babelfish.converters.alpha2',
'babelfish.converters.alpha3b',
'babelfish.converters.alpha3t',
'babelfish.converters.opensubtitles',
'babelfish.converters.thetvdb',
'babelfish.country',
'babelfish.exceptions',
'babelfish.language',
'babelfish.script',
'babelfish.utils',
'babelfish.converters.countryname',
'guessit.data',
'multiprocessing',
'pkg_resources',
'pkg_resources.extern',
'pkg_resources._vendor',
'pkg_resources._vendor.packaging'
],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='upload',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)