forked from MaaXYZ/M9A
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.py
72 lines (55 loc) · 1.56 KB
/
install.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
from pathlib import Path
import shutil
import sys
import json
from configure import configure_ocr_model
working_dir = Path(__file__).parent
install_path = working_dir / Path("install")
version = len(sys.argv) > 1 and sys.argv[1] or "v0.0.1"
def install_deps():
shutil.copytree(
working_dir / "deps" / "bin",
install_path,
ignore=shutil.ignore_patterns(
"*MaaDbgControlUnit*",
"*MaaThriftControlUnit*",
"*MaaWin32ControlUnit*",
"*MaaRpc*",
"*MaaHttp*",
),
dirs_exist_ok=True,
)
shutil.copytree(
working_dir / "deps" / "share" / "MaaAgentBinary",
install_path / "MaaAgentBinary",
dirs_exist_ok=True,
)
def install_resource():
configure_ocr_model()
shutil.copytree(
working_dir / "assets" / "resource",
install_path / "resource",
dirs_exist_ok=True,
)
shutil.copy2(
working_dir / "assets" / "interface.json",
install_path,
)
with open(install_path / "interface.json", "r", encoding="utf-8") as f:
interface = json.load(f)
interface["version"] = version
with open(install_path / "interface.json", "w", encoding="utf-8") as f:
json.dump(interface, f, ensure_ascii=False, indent=4)
def install_chores():
shutil.copy2(
working_dir / "README.md",
install_path,
)
shutil.copy2(
working_dir / "LICENSE",
install_path,
)
if __name__ == "__main__":
install_deps()
install_resource()
install_chores()