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

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

src/t/i/TinasoftPytextminer-HEAD/freeze_win.py   TinasoftPytextminer(Download)
from glob import glob
 
from cx_Freeze import setup, Executable
 
data_files = [
        version = __version__,
        description = __longdescr__,
        executables = [Executable("httpserver.py")],
        options = {
            "build_exe": {

src/t/i/TinasoftPytextminer-HEAD/freeze_linux.py   TinasoftPytextminer(Download)
import platform
 
from cx_Freeze import setup, Executable
 
# for win32, see: http://wiki.wxpython.org/cx_freeze
        version = __version__,
        description = __longdescr__,
        executables = [Executable("httpserver.py")],
        options = {
            "build_exe": {

src/v/o/volumeutil-1.1.0/setup.py   volumeutil(Download)
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from distutils.core import setup
try:
    from cx_Freeze import setup, Executable

src/r/a/rapid-spring-0.6.0/setup.py   rapid-spring(Download)
import sys
 
try:
	from cx_Freeze import setup, Executable
except ImportError:

src/s/i/signedimp-0.3.2/signedimp/tests/test_signedimp.py   signedimp(Download)
            with open(scriptfile,"w") as f:
                f.write("import signedimp.crypto.rsa\n")
            f = cx_Freeze.Freezer([cx_Freeze.Executable(scriptfile)],
                                  targetDir=self.distdir)
            f.Freeze()

src/s/i/signedimp-HEAD/signedimp/tests/test_signedimp.py   signedimp(Download)
            with open(scriptfile,"w") as f:
                f.write("import signedimp.crypto.rsa\n")
            f = cx_Freeze.Freezer([cx_Freeze.Executable(scriptfile)],
                                  targetDir=self.distdir)
            f.Freeze()

Previous  1 | 2 | 3