-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (39 loc) · 1007 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
42
43
44
from cx_Freeze import setup, Executable
import sys
import source
include_files = [
"./LICENSE.md",
"./README.md",
"./assets",
"./tools",
sys.exec_prefix + "\\DLLs\\tcl86t.dll",
sys.exec_prefix + "\\DLLs\\tk86t.dll",
]
options = {
"build_exe": {
"include_files": include_files,
"includes": ["tkinter", "PIL"],
"include_msvcr": True,
"packages": ["tkinter"],
}
}
setup(
options=options,
name='MKWF-Install',
version=".".join([str(v) for v in source.__version__]),
url='https://github.com/Faraphel/MKWF-Install',
license='Apache-2.0',
author='Faraphel',
author_email='rc60650@hotmail.com',
description='Mario Kart Wii Mod Installer.',
executables=[
Executable(
"main.py",
icon="./assets/icon.ico",
base="win32gui",
target_name="MKWF-Install.exe",
shortcut_name="MKWF-Install",
shortcut_dir="DesktopFolder"
)
],
)