kitikiplot 0.1.5__tar.gz → 0.1.6__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.
- {kitikiplot-0.1.5/kitikiplot.egg-info → kitikiplot-0.1.6}/PKG-INFO +9 -2
- {kitikiplot-0.1.5 → kitikiplot-0.1.6}/README.md +8 -1
- {kitikiplot-0.1.5 → kitikiplot-0.1.6/kitikiplot.egg-info}/PKG-INFO +9 -2
- {kitikiplot-0.1.5 → kitikiplot-0.1.6}/setup.py +1 -1
- {kitikiplot-0.1.5 → kitikiplot-0.1.6}/LICENSE +0 -0
- {kitikiplot-0.1.5 → kitikiplot-0.1.6}/MANIFEST.in +0 -0
- {kitikiplot-0.1.5 → kitikiplot-0.1.6}/kitikiplot/__init__.py +0 -0
- {kitikiplot-0.1.5 → kitikiplot-0.1.6}/kitikiplot/kitiki_cell.py +0 -0
- {kitikiplot-0.1.5 → kitikiplot-0.1.6}/kitikiplot/kitiki_color_config.py +0 -0
- {kitikiplot-0.1.5 → kitikiplot-0.1.6}/kitikiplot/kitikiplot.py +0 -0
- {kitikiplot-0.1.5 → kitikiplot-0.1.6}/kitikiplot.egg-info/SOURCES.txt +0 -0
- {kitikiplot-0.1.5 → kitikiplot-0.1.6}/kitikiplot.egg-info/dependency_links.txt +0 -0
- {kitikiplot-0.1.5 → kitikiplot-0.1.6}/kitikiplot.egg-info/top_level.txt +0 -0
- {kitikiplot-0.1.5 → kitikiplot-0.1.6}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: kitikiplot
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.6
|
4
4
|
Summary: A Python library to visualize categorical sliding window data.
|
5
5
|
Home-page: https://github.com/BodduSriPavan-111/kitikiplot
|
6
6
|
Author: Boddu Sri Pavan
|
@@ -76,15 +76,18 @@ ktk.plot( display_legend= True ) # Display the legend
|
|
76
76
|
Check out the complete <b>guide of customization</b> [here](https://github.com/BodduSriPavan-111/kitikiplot/blob/main/examples/Usage_Guide.ipynb).
|
77
77
|
|
78
78
|
## To-do
|
79
|
-
- [ ] Streamlit Demo
|
79
|
+
- [ ] Streamlit Demo Interface (In Progress: app.py)
|
80
80
|
- [ ] Tooltip
|
81
81
|
- [ ] Interactive Plot
|
82
82
|
- [ ] Multithreading to decrease plotting latency
|
83
83
|
- [ ] CI/CD Pipeline
|
84
84
|
- [ ] Domain-specific modules
|
85
|
+
- [ ] Website for documentation
|
85
86
|
|
86
87
|
Please refer <a href="https://github.com/BodduSriPavan-111/kitikiplot/blob/main/CONTRIBUTING.md">CONTRIBUTING.md</a> for <b>contributions</b> to kitikiplot.
|
87
88
|
|
89
|
+
To join the Discord server for more discussion, click <a href="https://discord.gg/PQKtqm5p">here</a>
|
90
|
+
|
88
91
|
### Key Author
|
89
92
|
<a href="https://www.linkedin.com/in/boddusripavan/"> Boddu Sri Pavan </a>
|
90
93
|
|
@@ -110,4 +113,8 @@ BibTeX <br>
|
|
110
113
|
> url = {https://doi.org/10.5281/zenodo.14632005}, <br>
|
111
114
|
>}
|
112
115
|
|
116
|
+
## Executing Tests when contributing to kitikiplot
|
117
|
+
|
118
|
+
Please refer <a href="https://github.com/BodduSriPavan-111/kitikiplot/blob/main/tests/unit_test/Readme.md">Readme.md</a> to run the tests
|
119
|
+
|
113
120
|
## Thank You !
|
@@ -57,15 +57,18 @@ ktk.plot( display_legend= True ) # Display the legend
|
|
57
57
|
Check out the complete <b>guide of customization</b> [here](https://github.com/BodduSriPavan-111/kitikiplot/blob/main/examples/Usage_Guide.ipynb).
|
58
58
|
|
59
59
|
## To-do
|
60
|
-
- [ ] Streamlit Demo
|
60
|
+
- [ ] Streamlit Demo Interface (In Progress: app.py)
|
61
61
|
- [ ] Tooltip
|
62
62
|
- [ ] Interactive Plot
|
63
63
|
- [ ] Multithreading to decrease plotting latency
|
64
64
|
- [ ] CI/CD Pipeline
|
65
65
|
- [ ] Domain-specific modules
|
66
|
+
- [ ] Website for documentation
|
66
67
|
|
67
68
|
Please refer <a href="https://github.com/BodduSriPavan-111/kitikiplot/blob/main/CONTRIBUTING.md">CONTRIBUTING.md</a> for <b>contributions</b> to kitikiplot.
|
68
69
|
|
70
|
+
To join the Discord server for more discussion, click <a href="https://discord.gg/PQKtqm5p">here</a>
|
71
|
+
|
69
72
|
### Key Author
|
70
73
|
<a href="https://www.linkedin.com/in/boddusripavan/"> Boddu Sri Pavan </a>
|
71
74
|
|
@@ -91,4 +94,8 @@ BibTeX <br>
|
|
91
94
|
> url = {https://doi.org/10.5281/zenodo.14632005}, <br>
|
92
95
|
>}
|
93
96
|
|
97
|
+
## Executing Tests when contributing to kitikiplot
|
98
|
+
|
99
|
+
Please refer <a href="https://github.com/BodduSriPavan-111/kitikiplot/blob/main/tests/unit_test/Readme.md">Readme.md</a> to run the tests
|
100
|
+
|
94
101
|
## Thank You !
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: kitikiplot
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.6
|
4
4
|
Summary: A Python library to visualize categorical sliding window data.
|
5
5
|
Home-page: https://github.com/BodduSriPavan-111/kitikiplot
|
6
6
|
Author: Boddu Sri Pavan
|
@@ -76,15 +76,18 @@ ktk.plot( display_legend= True ) # Display the legend
|
|
76
76
|
Check out the complete <b>guide of customization</b> [here](https://github.com/BodduSriPavan-111/kitikiplot/blob/main/examples/Usage_Guide.ipynb).
|
77
77
|
|
78
78
|
## To-do
|
79
|
-
- [ ] Streamlit Demo
|
79
|
+
- [ ] Streamlit Demo Interface (In Progress: app.py)
|
80
80
|
- [ ] Tooltip
|
81
81
|
- [ ] Interactive Plot
|
82
82
|
- [ ] Multithreading to decrease plotting latency
|
83
83
|
- [ ] CI/CD Pipeline
|
84
84
|
- [ ] Domain-specific modules
|
85
|
+
- [ ] Website for documentation
|
85
86
|
|
86
87
|
Please refer <a href="https://github.com/BodduSriPavan-111/kitikiplot/blob/main/CONTRIBUTING.md">CONTRIBUTING.md</a> for <b>contributions</b> to kitikiplot.
|
87
88
|
|
89
|
+
To join the Discord server for more discussion, click <a href="https://discord.gg/PQKtqm5p">here</a>
|
90
|
+
|
88
91
|
### Key Author
|
89
92
|
<a href="https://www.linkedin.com/in/boddusripavan/"> Boddu Sri Pavan </a>
|
90
93
|
|
@@ -110,4 +113,8 @@ BibTeX <br>
|
|
110
113
|
> url = {https://doi.org/10.5281/zenodo.14632005}, <br>
|
111
114
|
>}
|
112
115
|
|
116
|
+
## Executing Tests when contributing to kitikiplot
|
117
|
+
|
118
|
+
Please refer <a href="https://github.com/BodduSriPavan-111/kitikiplot/blob/main/tests/unit_test/Readme.md">Readme.md</a> to run the tests
|
119
|
+
|
113
120
|
## Thank You !
|
@@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as f:
|
|
6
6
|
|
7
7
|
setup(
|
8
8
|
name= "kitikiplot",
|
9
|
-
version= "0.1.
|
9
|
+
version= "0.1.6",
|
10
10
|
author="Boddu Sri Pavan",
|
11
11
|
author_email="boddusripavan111@gmail.com",
|
12
12
|
description="A Python library to visualize categorical sliding window data.",
|
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
|