diff options
author | rahulp13 | 2020-02-21 13:06:02 +0530 |
---|---|---|
committer | rahulp13 | 2020-02-21 13:06:02 +0530 |
commit | e4c3bf94f0ede7a354a1253f11b1dbf378b49327 (patch) | |
tree | be3c112395490f9ee73cfe8df31d1031f2524f84 /Debian/eSim.spec | |
parent | 354759ed869d72744f9f519b0e315e9df329c651 (diff) | |
download | eSim-e4c3bf94f0ede7a354a1253f11b1dbf378b49327.tar.gz eSim-e4c3bf94f0ede7a354a1253f11b1dbf378b49327.tar.bz2 eSim-e4c3bf94f0ede7a354a1253f11b1dbf378b49327.zip |
packaging with pyinstaller
Diffstat (limited to 'Debian/eSim.spec')
-rw-r--r-- | Debian/eSim.spec | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Debian/eSim.spec b/Debian/eSim.spec new file mode 100644 index 00000000..15061f6b --- /dev/null +++ b/Debian/eSim.spec @@ -0,0 +1,34 @@ +# -*- mode: python ; coding: utf-8 -*- + +block_cipher = None + +a = Analysis(['eSim-2.0/src/frontEnd/Application.py'], + pathex=['/home/rahul/Music'], + binaries=[], + datas=[], + hiddenimports=['PyQt4.sip'], + 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='eSim', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=True, + version='eSim-2.0/VERSION', + icon='eSim-2.0/images/logo.png') |