-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 940 Bytes
/
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
'''
Bundle into a Windows executable with `python setup.py build_exe`
'''
from cx_Freeze import setup, Executable
setup(
name="jackit",
version="1.0",
description="Program the game to win!",
options={
"build_exe": {
"includes": [
"deploy.py"
],
"excludes": [
"django",
"jackitio",
"tests"
],
"packages": [
"queue",
"idna",
"cffi",
"cryptography",
"OpenSSL",
"urllib3",
"ssl",
"requests"
],
"include_files": [
("gen.dump", "lib/gen.dump"),
("gen2.dump", "lib/gen2.dump"),
("gen3.dump", "lib/gen3.dump")
]
}
},
executables=[
Executable("game.py")
]
)