Python Dosyayı exe Yapma
notepad: http://www.gezginler.net/indir/notepadplusplus.html
cx_freeze: https://pypi.python.org/pypi/cx_Freeze
Setup Kodu:
from cx_Freeze import setup, Executable
setup(
name = "hello",
version = "0.1",
description = "Sample cx_Freeze script",
executables = [Executable("hello.py")])