Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update setup.py #17

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions nada.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#ifndef BOOCRAP_H
#define BOOCRAP_H


class boocrap
{
public:
boocrap();

};

#endif // BOOCRAP_H
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@
base = None
if sys.platform == "win32":
base = "Win32GUI"

# pathjoiner
pygame_py_file = os.path.join('spaceshooter', 'spaceShooter.py')

## The image and sound files are added manually into the zip file
## A fix for this would be released
## Fix not released yet. Please wait.

setup( name = "Space Shooter",
version = "0.0.2",
description = "classic retro game made using pygame",
options = {"build_exe": build_exe_options},
executables = [Executable(pygame_py_file, base=base)]
)
)