Atlas-Install/setup.py
Faraphel 599b520780 deleted every files that are not resources for the rewrite
Signed-off-by: Faraphel <rc60650@hotmail.com>
2022-06-07 19:37:38 +02:00

47 lines
1 KiB
Python

from cx_Freeze import setup, Executable
import sys
import json
include_files = [
"./icon.ico",
"./LICENSE",
"./README.md",
"./version",
"./translation.json",
"./assets",
"./tools",
sys.exec_prefix + "\\DLLs\\tcl86t.dll",
sys.exec_prefix + "\\DLLs\\tk86t.dll",
]
options = {
"build_exe": {
"include_files": include_files,
"includes": ["tkinter", "requests", "PIL", "distutils"],
"include_msvcr": True,
"packages": ["tkinter", "distutils"],
}
}
setup(
options=options,
name='MKWF-Install',
version="0.12",
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.pyw",
icon="./icon.ico",
base="win32gui",
target_name="MKWF-Install.exe",
shortcut_name="MKWF-Install",
shortcut_dir="DesktopFolder"
)
],
)