diff options
author | RaindropsSys <contact@minteck.org> | 2023-09-09 19:20:34 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-09-09 19:20:34 +0200 |
commit | 8f2e1b445f52e3df6e9763d216de1c0052c00153 (patch) | |
tree | 3d4a7bc1e0b4894a62e14ee727bef193b61c3849 /_temp/Blocks.spec | |
parent | 553401cc031d2d073f33008129ada4faf1eb2582 (diff) | |
download | blocks-8f2e1b445f52e3df6e9763d216de1c0052c00153.tar.gz blocks-8f2e1b445f52e3df6e9763d216de1c0052c00153.tar.bz2 blocks-8f2e1b445f52e3df6e9763d216de1c0052c00153.zip |
Diffstat (limited to '_temp/Blocks.spec')
-rw-r--r-- | _temp/Blocks.spec | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/_temp/Blocks.spec b/_temp/Blocks.spec new file mode 100644 index 0000000..29140e0 --- /dev/null +++ b/_temp/Blocks.spec @@ -0,0 +1,45 @@ +# -*- mode: python ; coding: utf-8 -*-
+
+
+block_cipher = None
+
+
+a = Analysis(
+ ['..\\main.py'],
+ pathex=['src'],
+ binaries=[],
+ datas=[('assets', 'assets')],
+ hiddenimports=[],
+ hookspath=[],
+ hooksconfig={},
+ runtime_hooks=[],
+ excludes=[],
+ win_no_prefer_redirects=False,
+ win_private_assemblies=False,
+ cipher=block_cipher,
+ noarchive=False,
+)
+pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
+
+exe = EXE(
+ pyz,
+ a.scripts,
+ a.binaries,
+ a.zipfiles,
+ a.datas,
+ [],
+ name='Blocks',
+ debug=False,
+ bootloader_ignore_signals=False,
+ strip=False,
+ upx=True,
+ upx_exclude=[],
+ runtime_tmpdir=None,
+ console=False,
+ disable_windowed_traceback=False,
+ argv_emulation=False,
+ target_arch=None,
+ codesign_identity=None,
+ entitlements_file=None,
+ icon=['assets\\textures\\icon.ico'],
+)
|