python -m pip install cx_freeze
import some_module
from cx_Freeze import setup, Executable
executables = [Executable('example.py')]
setup(name='hello_world',
version='0.0.1',
description='My Hello World App!',
executables=executables)
python setup.py build