gsplot 0.0.2__tar.gz → 0.0.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.0.2 → gsplot-0.0.4}/LICENSE +1 -1
- {gsplot-0.0.2 → gsplot-0.0.4}/PKG-INFO +10 -12
- {gsplot-0.0.2 → gsplot-0.0.4}/README.md +9 -11
- gsplot-0.0.4/gsplot/version.py +2 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/pyproject.toml +4 -1
- gsplot-0.0.2/gsplot/version.py +0 -2
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/__init__.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/base/base.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/base/base_alias_validator.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/color/colormap.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/config/config.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/data/load_file.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/figure/axes.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/figure/axes_base.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/figure/figure_tools.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/figure/show.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/figure/store.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/hello_world/hello_world.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/logger.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/path/path.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/plot/line.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/plot/line_base.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/plot/line_colormap_base.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/plot/line_colormap_dashed.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/plot/line_colormap_solid.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/plot/scatter.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/plot/scatter_colormap.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/style/graph.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/style/label.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/style/legend.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/style/legend_colormap.py +0 -0
- {gsplot-0.0.2 → gsplot-0.0.4}/gsplot/style/ticks.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2024 Soichiro Yamane
|
|
3
|
+
Copyright (c) 2024 Giordano Mattoni and Soichiro Yamane
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: gsplot
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.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
|
|
@@ -19,7 +19,7 @@ Project-URL: Homepage, https://soichiroyamane.github.io/gsplot/
|
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
|
|
21
21
|
<div align="center">
|
|
22
|
-
<img src="docs/_static/logo_title_gsplot.png" alt="logo_gsplot" width="300">
|
|
22
|
+
<img src="docs/_static/logo/logo_title_gsplot.png" alt="logo_gsplot" width="300">
|
|
23
23
|
</div>
|
|
24
24
|
|
|
25
25
|
[](https://github.com/SoichiroYamane/gsplot/actions/workflows/gh-pages-sphinx.yml)
|
|
@@ -39,28 +39,26 @@ Description-Content-Type: text/markdown
|
|
|
39
39
|
|
|
40
40
|
Welcome to **gsplot** (general-scientific plot), a toolkit designed to enhance the capabilities of data visualization based on [matplotlib](https://matplotlib.org). This package is specifically tailored for creating high-quality figures aimed at the scientific field.
|
|
41
41
|
|
|
42
|
-
## Features
|
|
42
|
+
## ✨ Features
|
|
43
43
|
|
|
44
44
|
- **Better Plot, Less Code**: Simplify the process of creating high-quality figures ⚛️
|
|
45
45
|
- **Compatibility**: Compatible with [matplotlib](https://matplotlib.org) 📊
|
|
46
46
|
- **Customization**: Customize your configuration to fit your needs 🎨
|
|
47
47
|
- **Reproducibility**: Save your package status to make plots reproducible 📦
|
|
48
48
|
|
|
49
|
-
### Example using gsplot
|
|
49
|
+
### 📈 Example using gsplot
|
|
50
50
|
|
|
51
51
|
[See more details](https://soichiroyamane.github.io/gsplot/guides/demo/4_paper_plot.html)
|
|
52
52
|
|
|
53
|
-

|
|
53
|
+

|
|
54
54
|
|
|
55
|
-
### Example with Python REPL 🐍 and neovim 🌟
|
|
55
|
+
### 🌃 Example with Python REPL 🐍 and neovim 🌟
|
|
56
56
|
|
|
57
57
|
[See more details](https://soichiroyamane.github.io/gsplot/guides/demo/13_REPL.html)
|
|
58
58
|
|
|
59
|
-

|
|
59
|
+

|
|
60
60
|
|
|
61
|
-
## Getting Started
|
|
62
|
-
|
|
63
|
-
### Installation
|
|
61
|
+
## 🚀 Getting Started
|
|
64
62
|
|
|
65
63
|
To use **gsplot**, ensure that you have `Python 3.10+` installed. You can install the package using `pip`:
|
|
66
64
|
|
|
@@ -68,14 +66,14 @@ To use **gsplot**, ensure that you have `Python 3.10+` installed. You can instal
|
|
|
68
66
|
pip install gsplot
|
|
69
67
|
```
|
|
70
68
|
|
|
71
|
-
## Authors
|
|
69
|
+
## 👥 Authors
|
|
72
70
|
|
|
73
71
|
This repository was forked from codes developed by Giordano Mattoni.
|
|
74
72
|
|
|
75
73
|
- Giordano Mattoni
|
|
76
74
|
- Soichiro Yamane
|
|
77
75
|
|
|
78
|
-
## License
|
|
76
|
+
## 📜 License
|
|
79
77
|
|
|
80
78
|
This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.
|
|
81
79
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="docs/_static/logo_title_gsplot.png" alt="logo_gsplot" width="300">
|
|
2
|
+
<img src="docs/_static/logo/logo_title_gsplot.png" alt="logo_gsplot" width="300">
|
|
3
3
|
</div>
|
|
4
4
|
|
|
5
5
|
[](https://github.com/SoichiroYamane/gsplot/actions/workflows/gh-pages-sphinx.yml)
|
|
@@ -19,28 +19,26 @@
|
|
|
19
19
|
|
|
20
20
|
Welcome to **gsplot** (general-scientific plot), a toolkit designed to enhance the capabilities of data visualization based on [matplotlib](https://matplotlib.org). This package is specifically tailored for creating high-quality figures aimed at the scientific field.
|
|
21
21
|
|
|
22
|
-
## Features
|
|
22
|
+
## ✨ Features
|
|
23
23
|
|
|
24
24
|
- **Better Plot, Less Code**: Simplify the process of creating high-quality figures ⚛️
|
|
25
25
|
- **Compatibility**: Compatible with [matplotlib](https://matplotlib.org) 📊
|
|
26
26
|
- **Customization**: Customize your configuration to fit your needs 🎨
|
|
27
27
|
- **Reproducibility**: Save your package status to make plots reproducible 📦
|
|
28
28
|
|
|
29
|
-
### Example using gsplot
|
|
29
|
+
### 📈 Example using gsplot
|
|
30
30
|
|
|
31
31
|
[See more details](https://soichiroyamane.github.io/gsplot/guides/demo/4_paper_plot.html)
|
|
32
32
|
|
|
33
|
-

|
|
33
|
+

|
|
34
34
|
|
|
35
|
-
### Example with Python REPL 🐍 and neovim 🌟
|
|
35
|
+
### 🌃 Example with Python REPL 🐍 and neovim 🌟
|
|
36
36
|
|
|
37
37
|
[See more details](https://soichiroyamane.github.io/gsplot/guides/demo/13_REPL.html)
|
|
38
38
|
|
|
39
|
-

|
|
39
|
+

|
|
40
40
|
|
|
41
|
-
## Getting Started
|
|
42
|
-
|
|
43
|
-
### Installation
|
|
41
|
+
## 🚀 Getting Started
|
|
44
42
|
|
|
45
43
|
To use **gsplot**, ensure that you have `Python 3.10+` installed. You can install the package using `pip`:
|
|
46
44
|
|
|
@@ -48,13 +46,13 @@ To use **gsplot**, ensure that you have `Python 3.10+` installed. You can instal
|
|
|
48
46
|
pip install gsplot
|
|
49
47
|
```
|
|
50
48
|
|
|
51
|
-
## Authors
|
|
49
|
+
## 👥 Authors
|
|
52
50
|
|
|
53
51
|
This repository was forked from codes developed by Giordano Mattoni.
|
|
54
52
|
|
|
55
53
|
- Giordano Mattoni
|
|
56
54
|
- Soichiro Yamane
|
|
57
55
|
|
|
58
|
-
## License
|
|
56
|
+
## 📜 License
|
|
59
57
|
|
|
60
58
|
This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "gsplot"
|
|
3
|
-
|
|
3
|
+
|
|
4
|
+
version = "0.0.4"
|
|
5
|
+
|
|
4
6
|
description = "General-scientific plot based on matplotlib"
|
|
5
7
|
authors = [
|
|
6
8
|
"Giordano Mattoni <mattoni@scphys.kyoto-u.ac.jp>",
|
|
@@ -39,6 +41,7 @@ sphinxcontrib-mermaid = "^1.0.0"
|
|
|
39
41
|
pydata-sphinx-theme = "^0.16.0"
|
|
40
42
|
sphinx-copybutton = "^0.5.2"
|
|
41
43
|
sphinx-autobuild = "^2024.10.3"
|
|
44
|
+
sphinx-multiversion = "^0.2.4"
|
|
42
45
|
|
|
43
46
|
|
|
44
47
|
[build-system]
|
gsplot-0.0.2/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
|