how to make linux installer with setup.py. I made .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 must be made in order to make the Linux installer for it, or do I need to create it myself on the Linux machine itself?
user4644994
source share