how do i make a linux installer from setup.py. I made an .msi from my setup.py file and here is the code for it
import cx_Freeze
executables = [cx_Freeze.Executable("Slither.py")]
cx_Freeze.setup(
name="Slytherine",
options = {
"build_exe": {
"packages":["pygame"],
"include_files": ["apple.png", "snake_head.png", "Score.dll"]
}
},
description = "Snake game",
executables = executables
)
What changes should be done in order to make a linux installer for it or do i have to build it on a linux machine itself?