2022-11-16 16:18:31 +00:00
|
|
|
# -*- mode: python ; coding: utf-8 -*-
|
2024-02-17 02:05:12 +00:00
|
|
|
import importlib
|
|
|
|
from pathlib import Path
|
2022-11-16 16:18:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
block_cipher = None
|
2024-02-17 02:05:12 +00:00
|
|
|
aiohttp_swagger_path = Path(importlib.import_module('aiohttp_swagger').__file__).parent
|
2022-11-16 16:18:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
a = Analysis(
|
2024-01-22 11:30:28 +00:00
|
|
|
['relay/__main__.py'],
|
|
|
|
pathex=[],
|
|
|
|
binaries=[],
|
|
|
|
datas=[
|
2024-02-17 02:05:12 +00:00
|
|
|
('relay/data', 'relay/data'),
|
2024-02-24 00:19:44 +00:00
|
|
|
('relay/frontend', 'relay/frontend'),
|
2024-02-17 02:05:12 +00:00
|
|
|
(aiohttp_swagger_path, 'aiohttp_swagger')
|
|
|
|
],
|
|
|
|
hiddenimports=[
|
2024-02-22 18:28:41 +00:00
|
|
|
'pg8000',
|
|
|
|
'sqlite3'
|
2024-01-22 11:30:28 +00:00
|
|
|
],
|
|
|
|
hookspath=[],
|
|
|
|
hooksconfig={},
|
|
|
|
runtime_hooks=[],
|
|
|
|
excludes=[],
|
|
|
|
win_no_prefer_redirects=False,
|
|
|
|
win_private_assemblies=False,
|
|
|
|
cipher=block_cipher,
|
|
|
|
noarchive=False,
|
2022-11-16 16:18:31 +00:00
|
|
|
)
|
2024-01-22 11:30:28 +00:00
|
|
|
|
2022-11-16 16:18:31 +00:00
|
|
|
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
|
|
|
|
|
|
|
|
exe = EXE(
|
2024-01-22 11:30:28 +00:00
|
|
|
pyz,
|
|
|
|
a.scripts,
|
|
|
|
a.binaries,
|
|
|
|
a.zipfiles,
|
|
|
|
a.datas,
|
|
|
|
[],
|
|
|
|
name='activityrelay',
|
2024-01-27 05:59:08 +00:00
|
|
|
icon=None,
|
2024-01-22 11:30:28 +00:00
|
|
|
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,
|
2022-11-16 16:18:31 +00:00
|
|
|
)
|