Skip to content

Instantly share code, notes, and snippets.

@1694kyle
1694kyle / setup.py
Created September 23, 2015 23:36
cx_freeze setup for scrapy proj
# 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
@1694kyle
1694kyle / Test
Last active August 29, 2015 14:22
import math
print math.cos(2)