diff --git a/.gitignore b/.gitignore index 53edd10..6e6681d 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ outputs/* .idea/stl-slicer.iml .idea/modules.xml .idea/misc.xml +dist/* +build/* diff --git a/Slicer.spec b/Slicer.spec new file mode 100644 index 0000000..7983c6e --- /dev/null +++ b/Slicer.spec @@ -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')