relay/relay.spec

56 lines
990 B
RPMSpec
Raw Normal View History

# -*- mode: python ; coding: utf-8 -*-
2024-02-17 02:05:12 +00:00
import importlib
from pathlib import Path
block_cipher = None
2024-02-17 02:05:12 +00:00
aiohttp_swagger_path = Path(importlib.import_module('aiohttp_swagger').__file__).parent
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'),
(aiohttp_swagger_path, 'aiohttp_swagger')
],
hiddenimports=[
'gunicorn',
'gunicorn.glogging'
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,
)
2024-01-22 11:30:28 +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',
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,
)