-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildVars.py
More file actions
26 lines (23 loc) · 957 Bytes
/
buildVars.py
File metadata and controls
26 lines (23 loc) · 957 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
def _(arg):
return arg
from datetime import datetime
addon_info = {
"addon_name": "bible",
"addon_summary": _("Bible"),
"addon_description": _("""This is an app designed for convenient exploration of various Bible translations"""),
"addon_version": datetime.now().strftime("%Y.%m.%d"),
"addon_author": "Alexandr Halimon<halimon.alexandr@gmail.com>",
"addon_url": "https://github.com/Halimon-Alexandr/nvda-bible-plugin",
"addon_sourceURL": "https://github.com/Halimon-Alexandr/nvda-bible-plugin",
"addon_docFileName": "readme.html",
"addon_minimumNVDAVersion": "2024.1.0",
"addon_lastTestedNVDAVersion": "2026.1.3",
"addon_updateChannel": None,
"addon_license": "GPL 2",
"addon_licenseURL": "https://www.gnu.org/licenses/gpl-2.0.html",
}
pythonSources = ["addon/GlobalPlugins/Bible/*.py"]
i18nSources = pythonSources + ["buildVars.py"]
excludedFiles = []
baseLanguage = "en"
markdownExtensions = []