matplotly 0.1.0__tar.gz → 0.1.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.
Files changed (54) hide show
  1. {matplotly-0.1.0 → matplotly-0.1.2}/.gitignore +1 -0
  2. {matplotly-0.1.0 → matplotly-0.1.2}/PKG-INFO +2 -1
  3. {matplotly-0.1.0 → matplotly-0.1.2}/README.md +1 -0
  4. matplotly-0.1.2/demo_box.ipynb +987 -0
  5. {matplotly-0.1.0 → matplotly-0.1.2}/demo_plot.ipynb +9 -9
  6. matplotly-0.1.2/demo_scatter.ipynb +577 -0
  7. {matplotly-0.1.0 → matplotly-0.1.2/examples}/demo_bar.ipynb +309 -1
  8. matplotly-0.1.2/examples/demo_box.ipynb +986 -0
  9. {matplotly-0.1.0 → matplotly-0.1.2/examples}/demo_hist.ipynb +4 -104
  10. matplotly-0.1.2/examples/demo_plot.ipynb +512 -0
  11. {matplotly-0.1.0 → matplotly-0.1.2/examples}/demo_scatter.ipynb +10 -10
  12. matplotly-0.1.2/examples/matplotly_demo.ipynb +461 -0
  13. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_code_gen.py +86 -2
  14. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_introspect.py +65 -0
  15. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_bar.py +219 -0
  16. {matplotly-0.1.0 → matplotly-0.1.2}/pyproject.toml +1 -1
  17. {matplotly-0.1.0 → matplotly-0.1.2}/tests/test_code_gen.py +150 -3
  18. matplotly-0.1.0/demo_box.ipynb +0 -1585
  19. {matplotly-0.1.0 → matplotly-0.1.2}/.github/workflows/publish.yml +0 -0
  20. {matplotly-0.1.0 → matplotly-0.1.2}/.github/workflows/tests.yml +0 -0
  21. {matplotly-0.1.0 → matplotly-0.1.2}/.readthedocs.yaml +0 -0
  22. {matplotly-0.1.0 → matplotly-0.1.2}/CHANGELOG.md +0 -0
  23. {matplotly-0.1.0 → matplotly-0.1.2}/LICENSE +0 -0
  24. {matplotly-0.1.0 → matplotly-0.1.2}/docs/api.rst +0 -0
  25. {matplotly-0.1.0 → matplotly-0.1.2}/docs/changelog.rst +0 -0
  26. {matplotly-0.1.0 → matplotly-0.1.2}/docs/conf.py +0 -0
  27. {matplotly-0.1.0 → matplotly-0.1.2}/docs/examples/index.rst +0 -0
  28. {matplotly-0.1.0 → matplotly-0.1.2}/docs/index.rst +0 -0
  29. {matplotly-0.1.0 → matplotly-0.1.2}/docs/installation.rst +0 -0
  30. {matplotly-0.1.0 → matplotly-0.1.2}/docs/quickstart.rst +0 -0
  31. {matplotly-0.1.0 → matplotly-0.1.2}/docs/requirements.txt +0 -0
  32. {matplotly-0.1.0 → matplotly-0.1.2/examples}/demo_errorbar.ipynb +0 -0
  33. {matplotly-0.1.0 → matplotly-0.1.2/examples}/demo_heatmap.ipynb +0 -0
  34. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/__init__.py +0 -0
  35. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_api.py +0 -0
  36. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_commands.py +0 -0
  37. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_profiles.py +0 -0
  38. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_renderer.py +0 -0
  39. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_style_import.py +0 -0
  40. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_types.py +0 -0
  41. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/__init__.py +0 -0
  42. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_base.py +0 -0
  43. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_color_utils.py +0 -0
  44. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_distribution.py +0 -0
  45. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_errorbar.py +0 -0
  46. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_fill.py +0 -0
  47. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_global.py +0 -0
  48. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_heatmap.py +0 -0
  49. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_histogram.py +0 -0
  50. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_line.py +0 -0
  51. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_marginal.py +0 -0
  52. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_scatter.py +0 -0
  53. {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_subplot.py +0 -0
  54. {matplotly-0.1.0 → matplotly-0.1.2}/requirements.txt +0 -0
@@ -8,6 +8,7 @@ build/
8
8
 
9
9
  # Virtual environment
10
10
  .venv/
11
+ .matplotly_env/
11
12
 
12
13
  # Jupyter
13
14
  .ipynb_checkpoints/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: matplotly
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Jupyter-native interactive matplotlib figure editor
5
5
  Project-URL: Homepage, https://github.com/p-koo/matplotly
6
6
  Project-URL: Documentation, https://matplotly.readthedocs.io
@@ -40,6 +40,7 @@ Description-Content-Type: text/markdown
40
40
  [![Python versions](https://img.shields.io/pypi/pyversions/matplotly.svg)](https://pypi.org/project/matplotly/)
41
41
  [![License](https://img.shields.io/pypi/l/matplotly.svg)](https://github.com/p-koo/matplotly/blob/main/LICENSE)
42
42
  [![Docs](https://readthedocs.org/projects/matplotly/badge/?version=latest)](https://matplotly.readthedocs.io)
43
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/p-koo/matplotly/blob/main/examples/matplotly_demo.ipynb)
43
44
 
44
45
  **Jupyter-native interactive matplotlib figure editor.**
45
46
 
@@ -4,6 +4,7 @@
4
4
  [![Python versions](https://img.shields.io/pypi/pyversions/matplotly.svg)](https://pypi.org/project/matplotly/)
5
5
  [![License](https://img.shields.io/pypi/l/matplotly.svg)](https://github.com/p-koo/matplotly/blob/main/LICENSE)
6
6
  [![Docs](https://readthedocs.org/projects/matplotly/badge/?version=latest)](https://matplotly.readthedocs.io)
7
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/p-koo/matplotly/blob/main/examples/matplotly_demo.ipynb)
7
8
 
8
9
  **Jupyter-native interactive matplotlib figure editor.**
9
10