This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import math | |
print math.cos(2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description: This is the cx_Freeze setup file for creating an exe program | |
# ============================================================================= | |
from cx_Freeze import setup, Executable | |
import platform | |
# NOTE: you can include any other necessary external imports here as well | |
if platform.system() == 'Windows': | |
bse = 'Win32GUI' | |
else: | |
bse = None |