added the notations for the tracks candiates of v0.11

This commit is contained in:
Faraphel 2022-04-22 22:41:45 +02:00
parent 5c06ed8f40
commit 3c280f7ba9
2 changed files with 1403 additions and 1406 deletions

File diff suppressed because it is too large Load diff

View file

@ -7,43 +7,11 @@ include_files = [
"./LICENSE", "./LICENSE",
"./README.md", "./README.md",
"./version", "./version",
"./ct_config.json",
"./file_process.json",
"./translation.json", "./translation.json",
"./file_structure.json",
"./tools", "./tools",
"./source", "./source",
# ("./file/Track-WU8", "./file/Track-WU8"),
("./file/cup_icon", "./file/cup_icon"),
("./file/img_desc", "./file/img_desc"),
("./file/video.thp", "./file/video.thp"),
("./file/SuperMario256.ttf", "./file/SuperMario256.ttf"),
("./file/Back.brctr", "./file/Back.brctr"),
("./file/cup_icon_64x64_common.brlyt", "./file/cup_icon_64x64_common.brlyt"),
("./file/CupSelectCup.brctr", "./file/CupSelectCup.brctr"),
("./file/CourseSelectCup.brctr", "./file/CourseSelectCup.brctr"),
("./file/course_name.brlyt", "./file/course_name.brlyt"),
("./file/lecode-PAL.bin", "./file/lecode-PAL.bin"),
("./file/lecode-USA.bin", "./file/lecode-USA.bin"),
("./file/lecode-JAP.bin", "./file/lecode-JAP.bin"),
("./file/lecode-KOR.bin", "./file/lecode-KOR.bin"),
("./file/itemBoxNiseRtpa.brres", "./file/itemBoxNiseRtpa.brres"),
("./file/lpar-normal.txt", "./file/lpar-normal.txt"),
("./file/RKRace.breff", "./file/RKRace.breff"),
("./file/tt_hatena_64x64.tpl.png", "./file/tt_hatena_64x64.tpl.png"),
("./file/tt_obi_bottom_curve_000.tpl.png", "./file/tt_obi_bottom_curve_000.tpl.png"),
("./file/tt_obi_bottom_left_000.tpl.png", "./file/tt_obi_bottom_left_000.tpl.png"),
("./file/tt_obi_bottom_right_000.tpl.png", "./file/tt_obi_bottom_right_000.tpl.png"),
("./file/tt_obi_check_000.tpl.png", "./file/tt_obi_check_000.tpl.png"),
("./file/tt_obi_top_curve_000.tpl.png", "./file/tt_obi_top_curve_000.tpl.png"),
("./file/tt_obi_top_left_000.tpl.png", "./file/tt_obi_top_left_000.tpl.png"),
("./file/tt_obi_top_right_000.tpl.png", "./file/tt_obi_top_right_000.tpl.png"),
("./file/savebanner.tpl.png", "./file/savebanner.tpl.png"),
sys.exec_prefix + "\\DLLs\\tcl86t.dll", sys.exec_prefix + "\\DLLs\\tcl86t.dll",
sys.exec_prefix + "\\DLLs\\tk86t.dll", sys.exec_prefix + "\\DLLs\\tk86t.dll",
] ]
@ -51,9 +19,9 @@ include_files = [
options = { options = {
"build_exe": { "build_exe": {
"include_files": include_files, "include_files": include_files,
"includes": ["tkinter", "requests", "PIL"], "includes": ["tkinter", "requests", "PIL", "distutils"],
"include_msvcr": True, "include_msvcr": True,
"packages": ["tkinter"], "packages": ["tkinter", "distutils"],
"excludes": ["source"], "excludes": ["source"],
} }
} }
@ -70,10 +38,14 @@ setup(
author='Faraphel', author='Faraphel',
author_email='rc60650@hotmail.com', author_email='rc60650@hotmail.com',
description='Installateur pour Mario Kart Wii Faraphel.', description='Installateur pour Mario Kart Wii Faraphel.',
executables=[Executable("./main.pyw", executables=[
icon="./icon.ico", Executable(
base="win32gui", "./main.pyw",
target_name="MKWF-Install.exe", icon="./icon.ico",
shortcut_name="MKWF-Install", base="win32gui",
shortcut_dir="DesktopFolder")], target_name="MKWF-Install.exe",
shortcut_name="MKWF-Install",
shortcut_dir="DesktopFolder"
)
],
) )