forked from iminurnamez/pyroller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (18 loc) · 646 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (18 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import sys
from cx_Freeze import setup, Executable
import pymunk
base = None
if sys.platform == "win32":
base = "Win32GUI"
exe = Executable(script="pyroller.py", base=base)
include_files=["resources/music", "resources/graphics", "resources/sound",
"resources/fonts"]
includes=[]
excludes=[]
packages=[]
setup(version="1.0",
description="A Collection of Casino Games",
author="PyRollers Collective",
name="Pyrollers Casino",
options={"build_exe": {"includes": includes, "include_files": include_files, "packages": packages, "excludes": excludes}},
executables=[exe])