This commit is contained in:
Tyrel Souza 2015-07-20 14:37:23 -04:00
parent 53129c003f
commit 0eaecc0741
3 changed files with 6 additions and 8 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
*.pyc
.idea
build*

View File

@ -7,16 +7,11 @@ a = Analysis(['main.py'],
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
a.binaries,
a.zipfiles,
a.datas,
name='AttributionReport.exe',
debug=False,
strip=None,
upx=True,
console=True )
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=None,
upx=True,
name='AttributionReport')

2
make_win.sh Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
pyinstaller main.py --name=AttributionReport -F