-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (25 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import cx_Freeze
executables = [cx_Freeze.Executable(script='main.py',
targetName='CoronaBreakout',
shortcutName='Corona-Breakout',
shortcutDir='DesktopFolder')]
cx_Freeze.setup(name='Corona Breakout',
version='1.0',
options={
'build_exe': {
'packages': ['pygame'],
'include_files': [
'Comic Strips',
'images',
'sounds',
'game.py',
'settings.py',
'sprites.py'
]
}
},
executables=executables,
description={
'author': "Gautam J, Lokesh Kumar Bhansali, Sai Sidharth Sriram",
'disc': 'Platformer game based on COVID19'
})