-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup_linux.py
More file actions
35 lines (25 loc) · 730 Bytes
/
setup_linux.py
File metadata and controls
35 lines (25 loc) · 730 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
26
27
28
29
30
31
32
33
34
35
from cx_Freeze import setup, Executable
import os
# Extra files
include_files = []
# Including libs
includes = []
# Unnecessary libs
excludes = []
bin_includes = []
# ,'idna.idnadata'
# Packages
packages = []
# Optimization level
optimize = 0
# If true, only errors and warning will be displayed when excuting cx_freeze
silent = True
target = Executable(
script = "gmg.py",
copyright= "Copyright © 2019 GMG",
)
setup(name = "Guide_Me_Glasses",
version = "0.1" ,
description = "" ,
options = {'build_exe': {'includes':includes,'excludes':excludes,'bin_includes':bin_includes, 'packages':packages, 'include_files':include_files, 'optimize':1, 'silent':silent}},
executables = [target])