-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 811 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (18 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
import sys
from cx_Freeze import setup, Executable
# Dependencies are automatically detected, but it might need fine tuning.
build_exe_options = {"packages": ["os","pygame","collections","sys"], "excludes": [], "include_files": ["resources"]}
# GUI applications require a different base on Windows (the default is for a
# console application).
base = None
if sys.platform == "win32":
base = "Win32GUI"
setup( name = "GetToAnExit!",
version = "0.1",
description = "A game of skill, chance, and copyright infringement.",
maintainer="Tom Allen",
maintainer_email="tom@jugglethis.net",
url = "https://github.com/Schwolop/GetToAnExit",
options = {"build_exe": build_exe_options},
executables = [Executable("main.py", base=base)])