wrfrun 0.1.7__tar.gz → 0.1.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {wrfrun-0.1.7 → wrfrun-0.1.9}/.gitignore +3 -2
- wrfrun-0.1.9/.python-version +1 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/PKG-INFO +4 -3
- {wrfrun-0.1.7 → wrfrun-0.1.9}/meson.build +1 -1
- {wrfrun-0.1.7 → wrfrun-0.1.9}/pyproject.toml +20 -4
- wrfrun-0.1.9/uv.lock +2443 -0
- wrfrun-0.1.9/wrfrun/cli.py +128 -0
- wrfrun-0.1.9/wrfrun/core/__init__.py +38 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/core/base.py +246 -75
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/core/config.py +286 -236
- wrfrun-0.1.9/wrfrun/core/error.py +110 -0
- wrfrun-0.1.9/wrfrun/core/replay.py +146 -0
- wrfrun-0.1.9/wrfrun/core/server.py +272 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/data.py +10 -5
- wrfrun-0.1.9/wrfrun/extension/__init__.py +29 -0
- wrfrun-0.1.9/wrfrun/extension/goos_sst/__init__.py +67 -0
- wrfrun-0.1.7/wrfrun/extension/goos_sst/goos_sst.py → wrfrun-0.1.9/wrfrun/extension/goos_sst/core.py +42 -17
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/extension/goos_sst/meson.build +1 -1
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/extension/goos_sst/res/Vtable.ERA_GOOS_SST +1 -1
- wrfrun-0.1.9/wrfrun/extension/goos_sst/res/__init__.py +26 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/extension/goos_sst/utils.py +21 -5
- wrfrun-0.1.9/wrfrun/extension/littler/__init__.py +57 -0
- wrfrun-0.1.7/wrfrun/extension/littler/utils.py → wrfrun-0.1.9/wrfrun/extension/littler/core.py +326 -40
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/extension/littler/meson.build +1 -1
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/extension/meson.build +1 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/extension/utils.py +22 -21
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/meson.build +4 -3
- wrfrun-0.1.9/wrfrun/model/__init__.py +30 -0
- wrfrun-0.1.9/wrfrun/model/plot.py +272 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/model/utils.py +17 -8
- wrfrun-0.1.9/wrfrun/model/wrf/__init__.py +47 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/model/wrf/core.py +218 -102
- wrfrun-0.1.9/wrfrun/model/wrf/exec_wrap.py +115 -0
- wrfrun-0.1.9/wrfrun/model/wrf/log.py +43 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/model/wrf/meson.build +1 -2
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/model/wrf/namelist.py +82 -11
- wrfrun-0.1.9/wrfrun/model/wrf/plot.py +5 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/model/wrf/scheme.py +85 -1
- wrfrun-0.1.7/wrfrun/model/wrf/_metgrid.py → wrfrun-0.1.9/wrfrun/model/wrf/utils.py +36 -2
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/model/wrf/vtable.py +2 -1
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/plot/wps.py +66 -58
- wrfrun-0.1.9/wrfrun/res/__init__.py +25 -0
- wrfrun-0.1.9/wrfrun/res/config/config.template.toml +50 -0
- wrfrun-0.1.9/wrfrun/res/config/meson.build +7 -0
- wrfrun-0.1.9/wrfrun/res/config/name_map.json +10 -0
- wrfrun-0.1.7/wrfrun/res/config.toml.template → wrfrun-0.1.9/wrfrun/res/config/wrf.template.toml +10 -47
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/generate_init.py +1 -1
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/meson.build +3 -3
- wrfrun-0.1.9/wrfrun/res/name_map.json +22 -0
- wrfrun-0.1.9/wrfrun/res/run.template.sh +10 -0
- wrfrun-0.1.9/wrfrun/res/scheduler/lsf.template +5 -0
- {wrfrun-0.1.7/wrfrun/res/job_scheduler → wrfrun-0.1.9/wrfrun/res/scheduler}/meson.build +2 -1
- {wrfrun-0.1.7/wrfrun/res/job_scheduler → wrfrun-0.1.9/wrfrun/res/scheduler}/name_map.json +4 -0
- {wrfrun-0.1.7/wrfrun/res/job_scheduler → wrfrun-0.1.9/wrfrun/res/scheduler}/pbs.template +1 -1
- {wrfrun-0.1.7/wrfrun/res/job_scheduler → wrfrun-0.1.9/wrfrun/res/scheduler}/slurm.template +2 -1
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/run.py +19 -23
- wrfrun-0.1.9/wrfrun/scheduler/__init__.py +35 -0
- wrfrun-0.1.9/wrfrun/scheduler/env.py +44 -0
- wrfrun-0.1.9/wrfrun/scheduler/lsf.py +47 -0
- wrfrun-0.1.9/wrfrun/scheduler/meson.build +12 -0
- wrfrun-0.1.9/wrfrun/scheduler/pbs.py +48 -0
- wrfrun-0.1.9/wrfrun/scheduler/script.py +70 -0
- wrfrun-0.1.9/wrfrun/scheduler/slurm.py +48 -0
- wrfrun-0.1.9/wrfrun/scheduler/utils.py +14 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/utils.py +8 -3
- wrfrun-0.1.9/wrfrun/workspace/__init__.py +38 -0
- wrfrun-0.1.9/wrfrun/workspace/core.py +92 -0
- wrfrun-0.1.9/wrfrun/workspace/meson.build +8 -0
- wrfrun-0.1.9/wrfrun/workspace/wrf.py +121 -0
- wrfrun-0.1.7/wrfrun/core/__init__.py +0 -5
- wrfrun-0.1.7/wrfrun/core/error.py +0 -80
- wrfrun-0.1.7/wrfrun/core/replay.py +0 -113
- wrfrun-0.1.7/wrfrun/core/server.py +0 -212
- wrfrun-0.1.7/wrfrun/extension/__init__.py +0 -1
- wrfrun-0.1.7/wrfrun/extension/goos_sst/__init__.py +0 -3
- wrfrun-0.1.7/wrfrun/extension/goos_sst/res/__init__.py +0 -9
- wrfrun-0.1.7/wrfrun/extension/littler/__init__.py +0 -1
- wrfrun-0.1.7/wrfrun/model/__init__.py +0 -7
- wrfrun-0.1.7/wrfrun/model/plot.py +0 -54
- wrfrun-0.1.7/wrfrun/model/wrf/__init__.py +0 -6
- wrfrun-0.1.7/wrfrun/model/wrf/_ndown.py +0 -39
- wrfrun-0.1.7/wrfrun/model/wrf/exec_wrap.py +0 -101
- wrfrun-0.1.7/wrfrun/pbs.py +0 -86
- wrfrun-0.1.7/wrfrun/res/__init__.py +0 -22
- wrfrun-0.1.7/wrfrun/res/config.yaml.template +0 -213
- wrfrun-0.1.7/wrfrun/res/name_map.json +0 -18
- wrfrun-0.1.7/wrfrun/res/run.sh.template +0 -16
- wrfrun-0.1.7/wrfrun/workspace.py +0 -88
- {wrfrun-0.1.7 → wrfrun-0.1.9}/.gitattributes +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/LICENSE +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/README.md +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/build.sh +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/__init__.py +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/core/meson.build +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/extension/goos_sst/README.md +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/extension/goos_sst/res/meson.build +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/extension/littler/README.md +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/extension/micaps/README.md +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/model/base.py +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/model/meson.build +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/model/wrf/geodata.py +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/plot/__init__.py +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/plot/meson.build +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/README.md +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/extension/meson.build +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/extension/name_map.json +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/extension/plotgrids.ncl +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/namelist/meson.build +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/namelist/name_map.json +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/namelist/namelist.input.da_wrfvar.template +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/namelist/namelist.input.dfi.template +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/namelist/namelist.input.real.template +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/namelist/namelist.input.wrf.template +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/namelist/namelist.wps.template +0 -0
- {wrfrun-0.1.7 → wrfrun-0.1.9}/wrfrun/res/namelist/parame.in.template +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.11
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wrfrun
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.9
|
|
4
4
|
Summary: wrfrun is a comprehensive toolkit for managing and using WRF
|
|
5
5
|
Keywords: WRF
|
|
6
6
|
Author-Email: Syize <syizeliu@gmail.com>
|
|
@@ -10,8 +10,8 @@ Project-URL: homepage, https://github.com/Syize/wrfrun
|
|
|
10
10
|
Project-URL: repository, https://github.com/Syize/wrfrun
|
|
11
11
|
Project-URL: documentation, https://wrfrun.syize.cn
|
|
12
12
|
Project-URL: Bug Tracker, https://github.com/Syize/wrfrun/issues
|
|
13
|
-
Requires-Python:
|
|
14
|
-
Requires-Dist: numpy
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Requires-Dist: numpy
|
|
15
15
|
Requires-Dist: xarray
|
|
16
16
|
Requires-Dist: netCDF4
|
|
17
17
|
Requires-Dist: rich
|
|
@@ -24,6 +24,7 @@ Requires-Dist: wrf-python
|
|
|
24
24
|
Requires-Dist: cfgrib
|
|
25
25
|
Requires-Dist: tomli
|
|
26
26
|
Requires-Dist: tomli-w
|
|
27
|
+
Requires-Dist: haversine
|
|
27
28
|
Description-Content-Type: text/markdown
|
|
28
29
|
|
|
29
30
|
# wrfrun: A toolkit to control WRF
|
|
@@ -4,10 +4,10 @@ requires = ["meson-python"]
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "wrfrun"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.9"
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
license = { text = "GPL-3.0-or-later" }
|
|
10
|
-
requires-python = '
|
|
10
|
+
requires-python = '>=3.10'
|
|
11
11
|
authors = [{name = "Syize", email = "syizeliu@gmail.com"}]
|
|
12
12
|
maintainers = [
|
|
13
13
|
{ name = "Syize", email = "syizeliu@gmail.com" },
|
|
@@ -15,7 +15,7 @@ maintainers = [
|
|
|
15
15
|
keywords = [ "WRF", ]
|
|
16
16
|
description = "wrfrun is a comprehensive toolkit for managing and using WRF"
|
|
17
17
|
dependencies = [
|
|
18
|
-
"numpy
|
|
18
|
+
"numpy",
|
|
19
19
|
"xarray",
|
|
20
20
|
"netCDF4",
|
|
21
21
|
"rich",
|
|
@@ -27,7 +27,8 @@ dependencies = [
|
|
|
27
27
|
"wrf-python",
|
|
28
28
|
"cfgrib",
|
|
29
29
|
"tomli",
|
|
30
|
-
"tomli-w"
|
|
30
|
+
"tomli-w",
|
|
31
|
+
"haversine"
|
|
31
32
|
]
|
|
32
33
|
|
|
33
34
|
[project.urls]
|
|
@@ -36,5 +37,20 @@ repository = "https://github.com/Syize/wrfrun"
|
|
|
36
37
|
documentation = "https://wrfrun.syize.cn"
|
|
37
38
|
"Bug Tracker" = "https://github.com/Syize/wrfrun/issues"
|
|
38
39
|
|
|
40
|
+
[project.scripts]
|
|
41
|
+
wrfrun = "wrfrun.cli:main_entry"
|
|
42
|
+
|
|
39
43
|
[tool.poetry]
|
|
40
44
|
readme = "README.md"
|
|
45
|
+
|
|
46
|
+
[tool.uv.extra-build-dependencies]
|
|
47
|
+
wrf-python = ["numpy"]
|
|
48
|
+
|
|
49
|
+
[dependency-groups]
|
|
50
|
+
dev = [
|
|
51
|
+
"pydata-sphinx-theme",
|
|
52
|
+
"sphinx-copybutton",
|
|
53
|
+
"sphinx-design",
|
|
54
|
+
"meson-python",
|
|
55
|
+
"sphinx-autobuild",
|
|
56
|
+
]
|