forked from jamesstringerparsec/Easy-GPU-PV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackages.py
53 lines (48 loc) · 1.15 KB
/
Packages.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import sys
import os
from cx_Freeze import setup, Executable
# ADD FILES
add_files = [
("./Modules/", "lib/PSSParsing/"),
("./Configs/", ""),
("./DDATool/", ""),
("./Scripts/", ""),
("./UpdatePV.ps1", ""),
("./CheckDDA.ps1", ""),
("./CheckGPU.ps1", ""),
("./CreateVM.ps1", ""),
("./CreateVM.ps1", ""),
("./DDATools.exe", ""),
("./UpdateDS.ps1", ""),
("./README.md", ""),
("./LICENSE", ""),
]
# TARGET
target = Executable(
script="VGPUTool.py",
# base="Win32GUI",
icon="Configs/HyperVCreated.ico",
uac_admin=True
)
# SETUP CX FREEZE
setup(
name="Hyper-V GPU Virtualization Manage Tool",
version="0.1.2024.1206",
description="Hyper-V GPU Virtualization Manage Tool",
author="Pikachu Ren",
options={
'build_exe': {
'include_files': add_files,
'include_path': [],
'includes': [],
"packages": [
"ttkbootstrap.utility",
"ttkbootstrap",
],
# "include_symbols": True,
"include_msvcr": True,
"excludes": []
},
},
executables=[target],
)