mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 03:08:29 +02:00
24 lines
No EOL
652 B
Python
24 lines
No EOL
652 B
Python
from cx_Freeze import setup, Executable
|
|
|
|
options = {
|
|
"build_exe":{
|
|
"includes": ["requests"],
|
|
"packages": [],
|
|
"excludes": []
|
|
}
|
|
}
|
|
|
|
setup(
|
|
options=options,
|
|
name='MKWF-Install',
|
|
version='0.3',
|
|
url='https://github.com/Faraphel/MKWF-Install',
|
|
license='GPL-3.0',
|
|
author='Faraphel',
|
|
author_email='rc60650@hotmail.com',
|
|
description='MKWF-Install Updater.',
|
|
executables = [Executable("./Updater.py",
|
|
target_name = "Updater.exe",
|
|
shortcut_name = "MKWF-Install Updater",
|
|
shortcut_dir = "DesktopFolder")],
|
|
) |