-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildVars.py
More file actions
22 lines (19 loc) · 721 Bytes
/
Copy pathbuildVars.py
File metadata and controls
22 lines (19 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import os
addon_info = {
"addon_name": "weatherChecker",
"addon_version": "4.4.1",
"summary": "Weather Checker",
"description": "Provides weather conditions, forecasts, astronomy data, and weather alerts using OpenWeather and Pirate Weather APIs.",
"author": "Swarup Baral",
"url": "https://github.com/swarup-developer/weatherChecker-addon",
"license": "GPL-2",
"minimumNVDAVersion": "2024.1",
"lastTestedNVDAVersion": "2026.1.1",
}
pythonSources = [
os.path.join("addon", "globalPlugins", "*.py"),
os.path.join("addon", "globalPlugins", "Weather checker", "*.py")
]
i18nSources = pythonSources + ["buildVars.py"]
sconstructFile = "SConstruct"
manifestFile = "manifest.ini"