toucan-plot 0.5.0__tar.gz → 0.5.2__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.
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/PKG-INFO +5 -5
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/README.md +4 -4
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/pyproject.toml +1 -1
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/main.py +1099 -50
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/__init__.py +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/__main__.py +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/adjustments-dark.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/adjustments-light.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/arrow-autofit-height-dark.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/arrow-autofit-height-light.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/arrow-narrow-left-dark.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/arrow-narrow-left-light.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/arrow-narrow-right-dark.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/arrow-narrow-right-light.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/device-floppy-dark.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/device-floppy-light.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/hand-stop-dark.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/hand-stop-light.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/home-dark.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/home-light.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/ico/toucan-plot.ico +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/ico/toucan-plot.png +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/layout-grid-add-dark.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/layout-grid-add-light.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/math-function-dark.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/math-function-light.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/ruler-measure-dark.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/ruler-measure-light.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/zoom-dark.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/assets/zoom-light.svg +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/utils/__init__.py +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/utils/loaders.py +0 -0
- {toucan_plot-0.5.0 → toucan_plot-0.5.2}/src/toucan_plot/utils/styles.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: toucan-plot
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: A versatile PySide6 and Matplotlib-based plotting tool for CSV and SMV data files.
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Requires-Dist: pyside6>=6.0
|
|
@@ -18,9 +18,9 @@ Description-Content-Type: text/markdown
|
|
|
18
18
|
|
|
19
19
|
# TouCAN-Plot
|
|
20
20
|
|
|
21
|
-
An interactive
|
|
21
|
+
An interactive PySide6 + Matplotlib plotting tool for CSV, SMV, and CAN bus log files.
|
|
22
22
|
|
|
23
|
-

|
|
24
24
|

|
|
25
25
|
|
|
26
26
|
## Features
|
|
@@ -115,8 +115,8 @@ toucan-plot
|
|
|
115
115
|
|
|
116
116
|
## Requirements
|
|
117
117
|
|
|
118
|
-
- Python ≥ 3.
|
|
119
|
-
-
|
|
118
|
+
- Python ≥ 3.13
|
|
119
|
+
- PySide6
|
|
120
120
|
- Matplotlib
|
|
121
121
|
- NumPy
|
|
122
122
|
- pyqtdarktheme
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# TouCAN-Plot
|
|
2
2
|
|
|
3
|
-
An interactive
|
|
3
|
+
An interactive PySide6 + Matplotlib plotting tool for CSV, SMV, and CAN bus log files.
|
|
4
4
|
|
|
5
|
-

|
|
6
6
|

|
|
7
7
|
|
|
8
8
|
## Features
|
|
@@ -97,8 +97,8 @@ toucan-plot
|
|
|
97
97
|
|
|
98
98
|
## Requirements
|
|
99
99
|
|
|
100
|
-
- Python ≥ 3.
|
|
101
|
-
-
|
|
100
|
+
- Python ≥ 3.13
|
|
101
|
+
- PySide6
|
|
102
102
|
- Matplotlib
|
|
103
103
|
- NumPy
|
|
104
104
|
- pyqtdarktheme
|