Make Win
This commit is contained in:
parent
53129c003f
commit
0eaecc0741
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
*.pyc
|
*.pyc
|
||||||
|
.idea
|
||||||
build*
|
build*
|
||||||
|
|
|
@ -7,16 +7,11 @@ a = Analysis(['main.py'],
|
||||||
pyz = PYZ(a.pure)
|
pyz = PYZ(a.pure)
|
||||||
exe = EXE(pyz,
|
exe = EXE(pyz,
|
||||||
a.scripts,
|
a.scripts,
|
||||||
exclude_binaries=True,
|
a.binaries,
|
||||||
|
a.zipfiles,
|
||||||
|
a.datas,
|
||||||
name='AttributionReport.exe',
|
name='AttributionReport.exe',
|
||||||
debug=False,
|
debug=False,
|
||||||
strip=None,
|
strip=None,
|
||||||
upx=True,
|
upx=True,
|
||||||
console=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