gsplot 0.1.3__tar.gz → 0.1.4__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.
- {gsplot-0.1.3 → gsplot-0.1.4}/PKG-INFO +7 -7
- gsplot-0.1.4/gsplot/version.py +2 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/pyproject.toml +7 -7
- gsplot-0.1.3/gsplot/version.py +0 -2
- {gsplot-0.1.3 → gsplot-0.1.4}/LICENSE +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/README.md +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/__init__.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/base/base.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/base/base_alias_validator.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/color/colormap.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/config/config.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/data/load_file.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/figure/axes.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/figure/axes_base.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/figure/axes_inset.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/figure/axes_range_base.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/figure/figure_tools.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/figure/show.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/figure/store.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/hello_world/hello_world.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/logger.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/path/path.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/plot/line.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/plot/line_base.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/plot/line_colormap_base.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/plot/line_colormap_dashed.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/plot/line_colormap_solid.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/plot/scatter.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/plot/scatter_colormap.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/style/graph.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/style/label.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/style/legend.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/style/legend_colormap.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/style/ticks.py +0 -0
- {gsplot-0.1.3 → gsplot-0.1.4}/gsplot/style/title.py +0 -0
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: gsplot
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: General-scientific plot based on matplotlib
|
|
5
5
|
Author: Giordano Mattoni
|
|
6
6
|
Author-email: mattoni@scphys.kyoto-u.ac.jp
|
|
7
|
-
Requires-Python: >=3.10
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.10
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.11
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
-
Requires-Dist: matplotlib (>=3.9.0
|
|
14
|
-
Requires-Dist: numpy (>=1.26.4
|
|
15
|
-
Requires-Dist: pyyaml (>=6.0.2
|
|
16
|
-
Requires-Dist: rich (>=13.9.4
|
|
17
|
-
Requires-Dist: types-pyyaml (>=6.0.12.20240917
|
|
13
|
+
Requires-Dist: matplotlib (>=3.9.0)
|
|
14
|
+
Requires-Dist: numpy (>=1.26.4)
|
|
15
|
+
Requires-Dist: pyyaml (>=6.0.2)
|
|
16
|
+
Requires-Dist: rich (>=13.9.4)
|
|
17
|
+
Requires-Dist: types-pyyaml (>=6.0.12.20240917)
|
|
18
18
|
Project-URL: Homepage, https://soichiroyamane.github.io/gsplot/
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "gsplot"
|
|
3
3
|
|
|
4
|
-
version = "0.1.
|
|
4
|
+
version = "0.1.4"
|
|
5
5
|
|
|
6
6
|
description = "General-scientific plot based on matplotlib"
|
|
7
7
|
authors = [
|
|
@@ -14,12 +14,12 @@ readme = "README.md"
|
|
|
14
14
|
Homepage = "https://soichiroyamane.github.io/gsplot/"
|
|
15
15
|
|
|
16
16
|
[tool.poetry.dependencies]
|
|
17
|
-
python = "
|
|
18
|
-
matplotlib = "
|
|
19
|
-
numpy = "
|
|
20
|
-
rich = "
|
|
21
|
-
pyyaml = "
|
|
22
|
-
types-pyyaml = "
|
|
17
|
+
python = ">=3.10"
|
|
18
|
+
matplotlib = ">=3.9.0"
|
|
19
|
+
numpy = ">=1.26.4"
|
|
20
|
+
rich = ">=13.9.4"
|
|
21
|
+
pyyaml = ">=6.0.2"
|
|
22
|
+
types-pyyaml = ">=6.0.12.20240917"
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
[tool.poetry.group.dev.dependencies]
|
gsplot-0.1.3/gsplot/version.py
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|