Make Win
This commit is contained in:
parent
53129c003f
commit
0eaecc0741
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
*.pyc
|
||||
.idea
|
||||
build*
|
||||
|
|
|
@ -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
2
make_win.sh
Normal file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/bash
|
||||
pyinstaller main.py --name=AttributionReport -F
|
Loading…
Reference in New Issue
Block a user