Skip to content

Commit

Permalink
Added Build files
Browse files Browse the repository at this point in the history
Created exe file using pyinstaller
  • Loading branch information
parazeeknova committed Feb 17, 2024
1 parent 20573a7 commit 9e4cedb
Show file tree
Hide file tree
Showing 21 changed files with 19,553 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/backBone.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ def open_new_window():
root.title("Python Text Editor")

#Logo
logo = tk.PhotoImage(file="main\\assets\\logo\\text-edit-icon-9.png")
root.iconphoto(False, logo)
# logo = tk.PhotoImage(file="main\\assets\\logo\\text-edit-icon-9.png")
# root.iconphoto(False, logo)

# Create a text area
text_area = tk.Text(root, wrap=tk.WORD)
Expand Down
38 changes: 38 additions & 0 deletions scripts/backBone.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# -*- mode: python ; coding: utf-8 -*-


a = Analysis(
['backBone.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
)
pyz = PYZ(a.pure)

exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='backBone',
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=['icon.ico'],
)
Loading

0 comments on commit 9e4cedb

Please sign in to comment.