rsplotlib 0.1.4__tar.gz → 0.1.5.post1__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 (42) hide show
  1. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/.gitignore +1 -0
  2. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/Cargo.lock +1 -1
  3. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/Cargo.toml +1 -1
  4. rsplotlib-0.1.5.post1/PKG-INFO +777 -0
  5. rsplotlib-0.1.5.post1/README.md +6 -0
  6. rsplotlib-0.1.5.post1/README_zh.md +750 -0
  7. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/build_wheel.sh +6 -0
  8. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/pyproject.toml +14 -6
  9. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/python/rsplotlib/api.py +5 -6
  10. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/python/rsplotlib/gridspec.py +13 -2
  11. rsplotlib-0.1.5.post1/python/rsplotlib/pyplot.py +996 -0
  12. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/axes.rs +305 -8
  13. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/axes_bounds.rs +68 -0
  14. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/axes_render_elements.rs +117 -0
  15. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/elements.rs +45 -0
  16. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/figure.rs +21 -11
  17. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/lib.rs +7 -0
  18. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/pyfuncs.rs +117 -13
  19. rsplotlib-0.1.4/PKG-INFO +0 -179
  20. rsplotlib-0.1.4/README.md +0 -168
  21. rsplotlib-0.1.4/README_zh.md +0 -162
  22. rsplotlib-0.1.4/python/rsplotlib/pyplot.py +0 -545
  23. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/.github/ci.yml +0 -0
  24. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/.github/release.yml +0 -0
  25. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/LICENSE +0 -0
  26. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/python/rsplotlib/__init__.py +0 -0
  27. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/python/rsplotlib/_figure_defaults.py +0 -0
  28. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/python/rsplotlib/_font_resolver.py +0 -0
  29. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/python/rsplotlib/_rcparams.py +0 -0
  30. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/python/rsplotlib/pylab.py +0 -0
  31. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/python/rsplotlib/style.py +0 -0
  32. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/python/rsplotlib/ticker.py +0 -0
  33. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/rust-toolchain.toml +0 -0
  34. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/axes_grid.rs +0 -0
  35. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/axes_legend.rs +0 -0
  36. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/axes_mesh.rs +0 -0
  37. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/axes_title.rs +0 -0
  38. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/axis.rs +0 -0
  39. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/colormap.rs +0 -0
  40. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/colors.rs +0 -0
  41. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/marker.rs +0 -0
  42. {rsplotlib-0.1.4 → rsplotlib-0.1.5.post1}/src/text_utils.rs +0 -0
@@ -27,6 +27,7 @@ uv.lock
27
27
  Thumbs.db
28
28
 
29
29
  # Data / plots
30
+ testing/
30
31
  main*.py
31
32
  out/
32
33
  wheelhouse/
@@ -339,7 +339,7 @@ dependencies = [
339
339
 
340
340
  [[package]]
341
341
  name = "rsplotlib"
342
- version = "0.1.4"
342
+ version = "0.1.5"
343
343
  dependencies = [
344
344
  "plotters",
345
345
  "png",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rsplotlib"
3
- version = "0.1.4"
3
+ version = "0.1.5"
4
4
  edition = "2024"
5
5
  readme = "README.md"
6
6