cx_Freeze - a tool can package your project to excutable/installer
after install it by pip, to package demo.py, we need setup.py below.
import sys
from cx_Freeze import setup, Executable
# Dependencies are automatically detected, but it might need fine tuning.
build_exe_options = {
&...