ebas-plot 0.1.0__tar.gz → 0.1.1__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.
- {ebas_plot-0.1.0 → ebas_plot-0.1.1}/PKG-INFO +3 -23
- {ebas_plot-0.1.0 → ebas_plot-0.1.1}/README.md +2 -22
- {ebas_plot-0.1.0 → ebas_plot-0.1.1}/ebas_plot.egg-info/PKG-INFO +3 -23
- {ebas_plot-0.1.0 → ebas_plot-0.1.1}/ebas_plot.py +1 -1
- {ebas_plot-0.1.0 → ebas_plot-0.1.1}/LICENSE +0 -0
- {ebas_plot-0.1.0 → ebas_plot-0.1.1}/ebas_plot.egg-info/SOURCES.txt +0 -0
- {ebas_plot-0.1.0 → ebas_plot-0.1.1}/ebas_plot.egg-info/dependency_links.txt +0 -0
- {ebas_plot-0.1.0 → ebas_plot-0.1.1}/ebas_plot.egg-info/entry_points.txt +0 -0
- {ebas_plot-0.1.0 → ebas_plot-0.1.1}/ebas_plot.egg-info/requires.txt +0 -0
- {ebas_plot-0.1.0 → ebas_plot-0.1.1}/ebas_plot.egg-info/top_level.txt +0 -0
- {ebas_plot-0.1.0 → ebas_plot-0.1.1}/pyproject.toml +0 -0
- {ebas_plot-0.1.0 → ebas_plot-0.1.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ebas-plot
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Plotting utilities for EBAS datasets served via THREDDS/OPeNDAP.
|
|
5
5
|
Author-email: Lise Eder Murberg <lemu@nilu.no>, Marthe Brevig <mbre@nilu.no>, Jonathan Elias Holme <jhol@nilu.no>
|
|
6
6
|
License-Expression: AGPL-3.0-or-later
|
|
@@ -29,7 +29,7 @@ Dynamic: license-file
|
|
|
29
29
|
|
|
30
30
|
# ebas-plot
|
|
31
31
|
|
|
32
|
-
Plotting utilities for EBAS datasets
|
|
32
|
+
Plotting utilities for EBAS NetCDF datasets.
|
|
33
33
|
|
|
34
34
|
## Installation
|
|
35
35
|
|
|
@@ -41,19 +41,7 @@ python3 -m pip install ebas-plot
|
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
This installs a fixed release, such as `0.1.0`, together with its required
|
|
44
|
-
dependencies. It is the recommended
|
|
45
|
-
published through GitLab CI.
|
|
46
|
-
|
|
47
|
-
For testing changes that have not yet been published, install the current code
|
|
48
|
-
directly from the `python-package` development branch:
|
|
49
|
-
|
|
50
|
-
```bash
|
|
51
|
-
python3 -m pip install "git+https://git.nilu.no/ebas/ebas-web/ebas-web-plotting.git@python-package"
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
This bypasses PyPI and installs the latest commit on that branch. It requires
|
|
55
|
-
Git to be installed and permission to access `git.nilu.no`; use it only when
|
|
56
|
-
you need unreleased changes.
|
|
44
|
+
dependencies. It is the recommended installation method.
|
|
57
45
|
|
|
58
46
|
## Usage
|
|
59
47
|
|
|
@@ -108,14 +96,6 @@ for figure in figures:
|
|
|
108
96
|
figure.show()
|
|
109
97
|
```
|
|
110
98
|
|
|
111
|
-
## Releases
|
|
112
|
-
|
|
113
|
-
The `python-package` branch is the release branch. GitLab CI builds the source
|
|
114
|
-
and wheel distributions for its commits. To publish a new version, update
|
|
115
|
-
`__version__` in `ebas_plot.py`, push the branch, and run the manual `publish`
|
|
116
|
-
job. Configure the protected GitLab CI/CD variable `PYPI_TOKEN` with a PyPI
|
|
117
|
-
project-scoped API token before publishing.
|
|
118
|
-
|
|
119
99
|
## License
|
|
120
100
|
|
|
121
101
|
Copyright (C) 2026 Lise Eder Murberg, Marthe Brevig, and Jonathan Elias Holme.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ebas-plot
|
|
2
2
|
|
|
3
|
-
Plotting utilities for EBAS datasets
|
|
3
|
+
Plotting utilities for EBAS NetCDF datasets.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -12,19 +12,7 @@ python3 -m pip install ebas-plot
|
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
This installs a fixed release, such as `0.1.0`, together with its required
|
|
15
|
-
dependencies. It is the recommended
|
|
16
|
-
published through GitLab CI.
|
|
17
|
-
|
|
18
|
-
For testing changes that have not yet been published, install the current code
|
|
19
|
-
directly from the `python-package` development branch:
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
python3 -m pip install "git+https://git.nilu.no/ebas/ebas-web/ebas-web-plotting.git@python-package"
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
This bypasses PyPI and installs the latest commit on that branch. It requires
|
|
26
|
-
Git to be installed and permission to access `git.nilu.no`; use it only when
|
|
27
|
-
you need unreleased changes.
|
|
15
|
+
dependencies. It is the recommended installation method.
|
|
28
16
|
|
|
29
17
|
## Usage
|
|
30
18
|
|
|
@@ -79,14 +67,6 @@ for figure in figures:
|
|
|
79
67
|
figure.show()
|
|
80
68
|
```
|
|
81
69
|
|
|
82
|
-
## Releases
|
|
83
|
-
|
|
84
|
-
The `python-package` branch is the release branch. GitLab CI builds the source
|
|
85
|
-
and wheel distributions for its commits. To publish a new version, update
|
|
86
|
-
`__version__` in `ebas_plot.py`, push the branch, and run the manual `publish`
|
|
87
|
-
job. Configure the protected GitLab CI/CD variable `PYPI_TOKEN` with a PyPI
|
|
88
|
-
project-scoped API token before publishing.
|
|
89
|
-
|
|
90
70
|
## License
|
|
91
71
|
|
|
92
72
|
Copyright (C) 2026 Lise Eder Murberg, Marthe Brevig, and Jonathan Elias Holme.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ebas-plot
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Plotting utilities for EBAS datasets served via THREDDS/OPeNDAP.
|
|
5
5
|
Author-email: Lise Eder Murberg <lemu@nilu.no>, Marthe Brevig <mbre@nilu.no>, Jonathan Elias Holme <jhol@nilu.no>
|
|
6
6
|
License-Expression: AGPL-3.0-or-later
|
|
@@ -29,7 +29,7 @@ Dynamic: license-file
|
|
|
29
29
|
|
|
30
30
|
# ebas-plot
|
|
31
31
|
|
|
32
|
-
Plotting utilities for EBAS datasets
|
|
32
|
+
Plotting utilities for EBAS NetCDF datasets.
|
|
33
33
|
|
|
34
34
|
## Installation
|
|
35
35
|
|
|
@@ -41,19 +41,7 @@ python3 -m pip install ebas-plot
|
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
This installs a fixed release, such as `0.1.0`, together with its required
|
|
44
|
-
dependencies. It is the recommended
|
|
45
|
-
published through GitLab CI.
|
|
46
|
-
|
|
47
|
-
For testing changes that have not yet been published, install the current code
|
|
48
|
-
directly from the `python-package` development branch:
|
|
49
|
-
|
|
50
|
-
```bash
|
|
51
|
-
python3 -m pip install "git+https://git.nilu.no/ebas/ebas-web/ebas-web-plotting.git@python-package"
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
This bypasses PyPI and installs the latest commit on that branch. It requires
|
|
55
|
-
Git to be installed and permission to access `git.nilu.no`; use it only when
|
|
56
|
-
you need unreleased changes.
|
|
44
|
+
dependencies. It is the recommended installation method.
|
|
57
45
|
|
|
58
46
|
## Usage
|
|
59
47
|
|
|
@@ -108,14 +96,6 @@ for figure in figures:
|
|
|
108
96
|
figure.show()
|
|
109
97
|
```
|
|
110
98
|
|
|
111
|
-
## Releases
|
|
112
|
-
|
|
113
|
-
The `python-package` branch is the release branch. GitLab CI builds the source
|
|
114
|
-
and wheel distributions for its commits. To publish a new version, update
|
|
115
|
-
`__version__` in `ebas_plot.py`, push the branch, and run the manual `publish`
|
|
116
|
-
job. Configure the protected GitLab CI/CD variable `PYPI_TOKEN` with a PyPI
|
|
117
|
-
project-scoped API token before publishing.
|
|
118
|
-
|
|
119
99
|
## License
|
|
120
100
|
|
|
121
101
|
Copyright (C) 2026 Lise Eder Murberg, Marthe Brevig, and Jonathan Elias Holme.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|