Skip to content

Commit

Permalink
Updated for pyinstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
evanchodora committed May 3, 2018
1 parent 45c6cc3 commit b7e3539
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ outputs/*
.idea/stl-slicer.iml
.idea/modules.xml
.idea/misc.xml
dist/*
build/*
29 changes: 29 additions & 0 deletions Slicer.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# -*- mode: python -*-

block_cipher = None


a = Analysis(['Slicer.py'],
pathex=['C:\\Users\\test\\Desktop\\School\\ME 8720\\Project 2\\Python Code\\stl-slicer'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='Slicer',
debug=False,
strip=False,
upx=True,
runtime_tmpdir=None,
console=False , icon='cube.ico')

0 comments on commit b7e3539

Please sign in to comment.