Fri, 01 Jan 2016 12:18:56 +0100
Updated copyright for 2016.
# -*- coding: utf-8 -*- # Copyright (c) 2013 - 2016 Detlev Offenbach <detlev@die-offenbachs.de> # """ Script to find the cxfreeze directory from running Python interpreter. """ import os import sys for sysPath in sys.path: modpath = os.path.join(sysPath, "cx_Freeze") if os.path.exists(modpath): print(modpath) break