-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.py
More file actions
27 lines (17 loc) · 796 Bytes
/
Copy pathinstall.py
File metadata and controls
27 lines (17 loc) · 796 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
from . import pip
try:
import philh_myftp_biz, pybind11_stubgen, wmi # pyright: ignore[reportUnusedImport]
except ModuleNotFoundError:
pip('install', '-U', 'git+https://github.com/MineFartS/Server-PythonPackage.git')
from philh_myftp_biz.modules import Module
#=================================================================================
# Install this Module
pip('install', 'pybind11-stubgen')
pip('install', 'wmi')
#=================================================================================
# Add Scheduled Tasks
this = Module('C:/Scripts/')
this.run('xml/set', 'Startup')
this.run('xml/set', 'Hour')
this.run('xml/set', 'Week')
#=================================================================================