Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahELE committed Jan 18, 2020
1 parent 20d6888 commit b76f4ad
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ db.ini
deploy_key_rsa
.vscode
__pycache__
Pipfile
Pipfile
Pipfile.lock
37 changes: 37 additions & 0 deletions SpaceFight.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# -*- mode: python ; coding: utf-8 -*-

block_cipher = None


a = Analysis(['SpaceFight.py'],
pathex=['D:\\Code\\Python\\SpaceFight'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
[],
exclude_binaries=True,
name='SpaceFight',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False )
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='SpaceFight')
Binary file modified __pycache__/alien.cpython-37.pyc
Binary file not shown.
Binary file modified __pycache__/bullet.cpython-37.pyc
Binary file not shown.
Binary file modified __pycache__/game_functions.cpython-37.pyc
Binary file not shown.
Binary file modified __pycache__/settings.cpython-37.pyc
Binary file not shown.
Binary file modified __pycache__/ship.cpython-37.pyc
Binary file not shown.

0 comments on commit b76f4ad

Please sign in to comment.