diff options
| author | Dylan Jones <dylanjones2011@gmail.com> | 2020-12-06 03:28:36 -0500 | 
|---|---|---|
| committer | Dylan Jones <dylanjones2011@gmail.com> | 2020-12-06 03:28:36 -0500 | 
| commit | 5fa585852d745f4350e7e31680e6b1d764e8d4c2 (patch) | |
| tree | ac3e973bc7602dafb7b6cce1ab2e12a521f82328 /modpackman.spec | |
| parent | 5b25086399f6a08d087b43ed57a9f3068516d0a2 (diff) | |
| download | modpackman-5fa585852d745f4350e7e31680e6b1d764e8d4c2.tar.gz modpackman-5fa585852d745f4350e7e31680e6b1d764e8d4c2.zip | |
Prepare for pyinstaller bundling
Diffstat (limited to 'modpackman.spec')
| -rw-r--r-- | modpackman.spec | 33 | 
1 files changed, 33 insertions, 0 deletions
| diff --git a/modpackman.spec b/modpackman.spec new file mode 100644 index 0000000..382568f --- /dev/null +++ b/modpackman.spec @@ -0,0 +1,33 @@ +# -*- mode: python ; coding: utf-8 -*- + +block_cipher = None + + +a = Analysis(['modpackman.py'], +             pathex=['/home/dylan/workspace/mod-manager'], +             binaries=[], +             datas=[('version.txt', '.'), ('pack.ini', '.'), ('local-config.ini', '.'), ('jeffrey-3-icon.png', '.')], +             hiddenimports=[], +             hookspath=[], +             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='modpackman', +          debug=False, +          bootloader_ignore_signals=False, +          strip=False, +          upx=True, +          upx_exclude=[], +          runtime_tmpdir=None, +          console=True ) | 
