pandas-plots 0.14.0__tar.gz → 0.15.0__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.
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/.gitignore +0 -1
- pandas_plots-0.15.0/.python-version +1 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/PKG-INFO +3 -1
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/pyproject.toml +5 -3
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/src/pandas_plots/pls.py +368 -192
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/src/pandas_plots/tbl.py +6 -4
- pandas_plots-0.15.0/src/test.ipynb +6208 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/uv.lock +1788 -1482
- pandas_plots-0.14.0/src/test.ipynb +0 -5613
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/LICENSE +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/README.md +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/img/2024-02-13-00-40-27.png +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/img/2024-02-14-20-49-00.png +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/img/2024-02-19-20-49-52.png +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/img/2024-03-02-17-33-43.png +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/img/2024-03-24-09-59-32.png +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/src/assets/Rplots.pdf +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/src/assets/dsich.csv +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/src/assets/facets.csv +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/src/pandas_plots/__init__.py +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/src/pandas_plots/hlp.py +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/src/pandas_plots/ven.py +0 -0
- {pandas_plots-0.14.0 → pandas_plots-0.15.0}/src/test.r +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
3.11
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pandas-plots
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.15.0
|
4
4
|
Summary: A collection of helper for table handling and visualization
|
5
5
|
Project-URL: Homepage, https://github.com/smeisegeier/pandas-plots
|
6
6
|
Project-URL: Repository, https://github.com/smeisegeier/pandas-plots
|
@@ -16,9 +16,11 @@ Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.10
|
17
17
|
Classifier: Topic :: Scientific/Engineering
|
18
18
|
Requires-Python: >=3.10
|
19
|
+
Requires-Dist: connection-helper>=0.11.2
|
19
20
|
Requires-Dist: dataframe-image>=0.2.6
|
20
21
|
Requires-Dist: duckdb>=1.3.0
|
21
22
|
Requires-Dist: jinja2>=3.1.4
|
23
|
+
Requires-Dist: kaleido>=1
|
22
24
|
Requires-Dist: matplotlib-venn==0.11.10
|
23
25
|
Requires-Dist: matplotlib>=3.8.2
|
24
26
|
Requires-Dist: missingno>=0.5.2
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "pandas-plots"
|
3
|
-
version = "0.
|
3
|
+
version = "0.15.0"
|
4
4
|
author_email = "dexterDSDo@googlemail.com"
|
5
5
|
description = "A collection of helper for table handling and visualization"
|
6
6
|
long_description = "file: README.md"
|
@@ -24,7 +24,8 @@ classifiers = [
|
|
24
24
|
|
25
25
|
dependencies = [
|
26
26
|
"pandas>=2.0.0",
|
27
|
-
"plotly>=6.2",
|
27
|
+
"plotly>=6.2", # upgrade from 5.24
|
28
|
+
"kaleido>=1", # needed for plotly export, must be manually added
|
28
29
|
"matplotlib>=3.8.2",
|
29
30
|
"matplotlib-venn==0.11.10",
|
30
31
|
"seaborn>=0.13.2",
|
@@ -34,7 +35,8 @@ dependencies = [
|
|
34
35
|
"missingno>=0.5.2",
|
35
36
|
"duckdb>=1.3.0",
|
36
37
|
"nbformat>=4.2.0",
|
37
|
-
"dataframe_image>=0.2.6"
|
38
|
+
"dataframe_image>=0.2.6",
|
39
|
+
"connection-helper>=0.11.2",
|
38
40
|
]
|
39
41
|
|
40
42
|
[project.urls]
|