• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(72)  |  Call(54)  |  Derive(0)  |  Import(18)

src/c/x/cx-freeze-HEAD/trunk/samples/service/setup.py   cx-freeze(Download)
# using different configuration files.
 
from cx_Freeze import setup, Executable
 
buildOptions = dict(includes = ["ServiceHandler"])
executable = Executable("Config.py", base = "Win32Service",

src/h/a/hamsimanager-HEAD/trunk/setup.py   hamsimanager(Download)
 
import os, sys
from cx_Freeze import setup, Executable
from Core import Variables
import InputOutputs
 
MainExe = Executable(
    script = "HamsiManager.py",
    initScript = None,
    base = exeBase,
 
ReconfigureExe = Executable(
    script = "Reconfigure.py",
    initScript = None,
    base = exeBase,
 
InstallExe = Executable(
    script = "install.py",
    initScript = None,
    base = exeBase,

src/c/x/cx-freeze-HEAD/trunk/samples/wx/setup.py   cx-freeze(Download)
import sys
 
from cx_Freeze import setup, Executable
 
base = None
        version = "0.1",
        description = "Sample cx_Freeze wxPython script",
        executables = [Executable("wxapp.py", base = base)])
 
 

src/c/x/cx-freeze-HEAD/trunk/samples/Tkinter/setup.py   cx-freeze(Download)
import sys
 
from cx_Freeze import setup, Executable
 
base = None
        version = "0.1",
        description = "Sample cx_Freeze Tkinter script",
        executables = [Executable("SimpleTkApp.py", base = base)])
 
 

src/c/x/cx-freeze-HEAD/trunk/samples/PyQt4/setup.py   cx-freeze(Download)
import sys
 
from cx_Freeze import setup, Executable
 
base = None
        version = "0.1",
        description = "Sample cx_Freeze PyQt4 script",
        executables = [Executable("PyQt4app.py", base = base)])
 
 

src/e/l/elfcloud-weasel-1.2.2/setup_cx.py   elfcloud-weasel(Download)
import sys
from setuptools import find_packages
from cx_Freeze import setup, Executable
 
here = os.path.abspath(os.path.dirname(__file__))
      """,
      options={"build_exe": build_exe_options},
      executables=[Executable(os.path.join("elfcloud", "cli", "__init__.py"),
                        base=base,
                        copyDependentFiles=True,

src/w/e/web2py-HEAD/scripts/standalone_exe_cxfreeze.py   web2py(Download)
    c:\Python27\python standalone_exe_cxfreeze.py build_exe
"""
from cx_Freeze import setup, Executable
from gluon.import_all import base_modules, contributed_modules
from gluon.fileutils import readlines_file
    license="LGPL v3",
    options=dict(build_exe=buildOptions),
    executables=[Executable("web2py.py",
                            base=base,
                            compress=True,

src/c/x/cx-freeze-HEAD/trunk/samples/advanced/setup.py   cx-freeze(Download)
 
import sys
from cx_Freeze import setup, Executable
 
executables = [
        Executable("advanced_1.py"),
        Executable("advanced_2.py")

src/c/x/cx-freeze-HEAD/trunk/samples/zope/setup.py   cx-freeze(Download)
import sys
 
from cx_Freeze import setup, Executable
 
buildOptions = dict(
        description = "QOTD sample for demonstrating use of namespace packages",
        options = dict(build_exe = buildOptions),
        executables = [Executable("qotd.py")])
 
 

src/c/x/cx-freeze-HEAD/trunk/samples/simple/setup.py   cx-freeze(Download)
# subdirectory that contains the files needed to run the script without Python
 
from cx_Freeze import setup, Executable
 
setup(
        name = "hello",
        version = "0.1",
        description = "Sample cx_Freeze script",
        executables = [Executable("hello.py")])

  1 | 2  Next