-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (38 loc) · 1.6 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import cx_Freeze
executables = [cx_Freeze.Executable('Main.py')]
cx_Freeze.setup(
name="Crimsoncaller",
options={'build_exe': {'packages':['pygame'],
'include_files':['__pycache__',
'fonts',
'music',
'playercharacters',
'PPlay',
'PPlay - Copy',
'sprites',
'Animations.py',
'Cerbero.py',
'CurrentScreen.py',
'Demon.py',
'Devotee.py',
'Dragon.py',
'Enemy.py',
'Game.py',
'GameWindow.py',
'HUD.py',
'Input.py',
'Levels.py',
'MainMenu.py',
'MenuSprites.py',
'Misc.py',
'Player FunctionalCollision but not perfect.py',
'Player.py',
'soma.gif',
'soma-2.gif',
'soma-3.gif',
'temp.py',
'Warrior.py',
'workingAnimCycle.txt',
]}},
executables = executables
)