initial commit
This commit is contained in:
15
setup.py
Normal file
15
setup.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from cx_Freeze import setup, Executable
|
||||
|
||||
setup(
|
||||
name="MonitorInputSwitcher",
|
||||
version="1.0",
|
||||
description="Monitors keyboard connection and switches input",
|
||||
options={
|
||||
"build_exe": {
|
||||
"packages": ["wmi", "monitorcontrol", "win32com", "time"],
|
||||
"excludes": ["tkinter"],
|
||||
"include_files": [], # add DLLs or files here if needed
|
||||
}
|
||||
},
|
||||
executables=[Executable("main.py")]
|
||||
)
|
||||
Reference in New Issue
Block a user