python -m pip install cx_Freeze --upgrade
from cx_Freeze import setup, Executable setup( name = "name", version = "1.0", description = "This tool is..", executables = [Executable("pkg_exdata.py")] )
python setup.py build