-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreateFreeze.py
More file actions
25 lines (20 loc) · 888 Bytes
/
createFreeze.py
File metadata and controls
25 lines (20 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import sys
import os
from cx_Freeze import setup, Executable
# Dependencies are automatically detected, but it might need fine tuning.
build_exe_options = {"packages": ["os","tkinter"],
"include_files": ["sss2angle.gif",
"SynerconLogoWithName300.gif",
"SynerconLogoWithName.gif",
"SynerconLogo.gif",
"SSS2Pins.gif"]}
target = Executable(
script="SSS2-Interface.py",
base="Win32GUI",
icon="SynerconLogo.ico"
)
setup( name = "SSS2 Interface App",
version = "1.0.6",
description = "A graphical user interface for the Smart Sensor Simulator 2 from Synercon Technologies.",
options = {"build_exe": build_exe_options},
executables = [target])