27 lines
575 B
Python
27 lines
575 B
Python
from cx_Freeze import setup, Executable
|
|
|
|
setup(
|
|
name='Bataille Navale',
|
|
description='Bataille Navale',
|
|
author='Raphaël & Léo',
|
|
version='1',
|
|
|
|
options={
|
|
"build_exe": {
|
|
"include_files": ["./assets"],
|
|
}
|
|
},
|
|
|
|
packages=['source'],
|
|
|
|
executables=[
|
|
Executable(
|
|
"main.pyw",
|
|
icon="./assets/image/icon/icon.ico",
|
|
base="win32gui",
|
|
target_name="Bataille Navale.exe",
|
|
shortcut_name="Bataille Navale",
|
|
shortcut_dir="DesktopFolder"
|
|
)
|
|
],
|
|
)
|