-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1014 Bytes
/
setup.py
File metadata and controls
45 lines (40 loc) · 1014 Bytes
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
45
from cx_Freeze import setup, Executable
import sys
from source.version import get_current_version
include_files = [
"./LICENSE.md",
"./README.md",
"./version",
"./assets",
"./tools",
sys.exec_prefix + "/DLLs/tcl86t.dll",
sys.exec_prefix + "/DLLs/tk86t.dll",
]
options = {
"build_exe": {
"include_files": include_files,
"includes": ["tkinter"],
"packages": ["tkinter"],
"include_msvcr": True,
}
}
setup(
options=options,
name='MKWF-Helper',
version=get_current_version(),
url='https://github.com/Faraphel/MKWF-Helper',
license='Apache-2.0',
author='Faraphel',
author_email='rc60650@hotmail.com',
description='Mario Kart Wii Mod Helper.',
executables=[
Executable(
"main.py",
icon="./assets/icon.ico",
base="win32gui",
target_name="MKWF-Helper.exe",
shortcut_name="MKWF-Helper",
shortcut_dir="DesktopFolder"
)
],
)