forked from SeanTolstoyevski/unspokenPy3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildVars.py
26 lines (17 loc) · 827 Bytes
/
buildVars.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
from pathlib import Path
_ = lambda x : x
addon_info = {
"addon_name" : "unspokenPy3",
"addon_summary" : _("Unspoken"),
"addon_description" : _("""Removes names label from object like, link, button. It plays different sounds instead of labels."""),
"addon_version" : "0.4",
"addon_author" : u", Sean (ported python3): [email protected], Camlorn (main developer): [email protected], Bryan Smart: NoMail",
"addon_url" : "https://github.com/SeanTolstoyevski/unspokenPy3/releases",
"addon_docFileName" : "readme.html",
"addon_minimumNVDAVersion" : 2019.3,
"addon_lastTestedNVDAVersion" : 2022.3,
"addon_updateChannel" : None,
}
pythonSources = list(Path.cwd().joinpath("addon", "globalPlugins").rglob("*.py"))
i18nSources = pythonSources + ["buildVars.py", "addon\\installTasks.py"]
excludedFiles = []