tikzplot42 0.4.7__tar.gz → 0.5.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.
Files changed (50) hide show
  1. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/PKG-INFO +9 -12
  2. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/README.md +5 -5
  3. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/pyproject.toml +4 -7
  4. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/axes.py +443 -155
  5. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/axes.pyi +149 -2
  6. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/colorbar.py +4 -1
  7. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/colorbar.pyi +16 -0
  8. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/elements.py +92 -17
  9. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/figure.py +26 -2
  10. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/plots.py +14 -0
  11. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/plots.pyi +160 -28
  12. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot42.egg-info/PKG-INFO +9 -12
  13. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot42.egg-info/SOURCES.txt +2 -0
  14. tikzplot42-0.5.0/tests/test13.py +62 -0
  15. tikzplot42-0.5.0/tests/test14.py +37 -0
  16. tikzplot42-0.5.0/tests/test15.py +40 -0
  17. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test7.py +1 -1
  18. tikzplot42-0.4.7/tests/test13.py +0 -29
  19. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/LICENSE +0 -0
  20. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/setup.cfg +0 -0
  21. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/__init__.py +0 -0
  22. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/__init__.pyi +0 -0
  23. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/axes3d.py +0 -0
  24. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/axes3d.pyi +0 -0
  25. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/colors.py +0 -0
  26. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/config.py +0 -0
  27. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/config.pyi +0 -0
  28. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/elements.pyi +0 -0
  29. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/figure.pyi +0 -0
  30. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/latex_special.py +0 -0
  31. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/py.typed +0 -0
  32. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/state.py +0 -0
  33. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/styles.py +0 -0
  34. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/styles.pyi +0 -0
  35. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot/texts.py +0 -0
  36. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot42.egg-info/dependency_links.txt +0 -0
  37. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot42.egg-info/requires.txt +0 -0
  38. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/src/tikzplot42.egg-info/top_level.txt +0 -0
  39. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test1.py +0 -0
  40. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test10.py +0 -0
  41. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test11.py +0 -0
  42. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test12.py +0 -0
  43. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test2.py +0 -0
  44. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test3.py +0 -0
  45. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test4.py +0 -0
  46. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test5.py +0 -0
  47. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test6.py +0 -0
  48. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test8.py +0 -0
  49. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test9.py +0 -0
  50. {tikzplot42-0.4.7 → tikzplot42-0.5.0}/tests/test_styles.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tikzplot42
3
- Version: 0.4.7
3
+ Version: 0.5.0
4
4
  Summary: TikzPlot to make TikZ/PGFPlots plots with matplotlib.pyplot-like syntax.
5
5
  Author-email: Zan Ambrozic <zan.ambrozic7@gmail.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -686,14 +686,11 @@ Classifier: Development Status :: 3 - Alpha
686
686
  Classifier: Intended Audience :: Science/Research
687
687
  Classifier: Intended Audience :: Developers
688
688
  Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
689
- Classifier: Programming Language :: Python :: 3
690
- Classifier: Programming Language :: Python :: 3 :: Only
691
- Classifier: Programming Language :: Python :: 3.9
692
- Classifier: Programming Language :: Python :: 3.10
693
- Classifier: Programming Language :: Python :: 3.11
694
689
  Classifier: Programming Language :: Python :: 3.12
690
+ Classifier: Programming Language :: Python :: 3.13
691
+ Classifier: Programming Language :: Python :: 3.14
695
692
  Classifier: Topic :: Scientific/Engineering :: Visualization
696
- Requires-Python: >=3.9
693
+ Requires-Python: >=3.12
697
694
  Description-Content-Type: text/markdown
698
695
  License-File: LICENSE
699
696
  Requires-Dist: numpy
@@ -703,14 +700,14 @@ Dynamic: license-file
703
700
  # TikzPlot
704
701
  A clean version of PltToTikz, this time as Python package. Easy to use: only replace import matplotlib.pyplot with this library.
705
702
 
706
- Please let me know if you find any bugs or unexpected behaviour. Examples may be found in repository under `tests/` directory.
703
+ Please report any bugs or unexpected behaviour in Issues. Examples may be found in repository under `tests/` directory.
707
704
 
708
705
  <p align="center">
709
706
  <img src="https://raw.githubusercontent.com/ZanAmb/TikzPlot/main/tests/demo.png" width="60%">
710
707
  </p>
711
708
 
712
709
  # Installation
713
- NEW: PyPI: `pip install tikzplot42`.
710
+ PyPI: `pip install tikzplot42`.
714
711
  Alternativley, download this package and install using: `pip install [path]`, where [path] is the path to the directory, containing `pyproject.toml`.
715
712
 
716
713
  ## Python usage
@@ -741,7 +738,8 @@ Some basic plot commands are already implemented with commonly used arguments:
741
738
  - `stem()`,
742
739
  - `fill_between()`,
743
740
  - `hlines()/vlines()`,
744
- - `histogram()`,
741
+ - `hist()`,
742
+ - `bar()/barh()`,
745
743
  - `step()`,
746
744
  - `imshow()`,
747
745
  - `text()`,
@@ -792,7 +790,6 @@ For plot configurations (default sizes, paddings, etc.), use `from tikzplot impo
792
790
  Currently supported parameters are listed with their default values in `src/tikzplot/config.py`.
793
791
 
794
792
  ## More features coming soon...
795
- - bar plots,
796
- - more developed styles,
793
+ - additional arguments supprot for implemented commands,
797
794
  - improved 3D plots (currently only basic support: plot, errorbar, fill_between, scatter, plot_wireframe, plot_surface),
798
795
  - ...
@@ -1,14 +1,14 @@
1
1
  # TikzPlot
2
2
  A clean version of PltToTikz, this time as Python package. Easy to use: only replace import matplotlib.pyplot with this library.
3
3
 
4
- Please let me know if you find any bugs or unexpected behaviour. Examples may be found in repository under `tests/` directory.
4
+ Please report any bugs or unexpected behaviour in Issues. Examples may be found in repository under `tests/` directory.
5
5
 
6
6
  <p align="center">
7
7
  <img src="https://raw.githubusercontent.com/ZanAmb/TikzPlot/main/tests/demo.png" width="60%">
8
8
  </p>
9
9
 
10
10
  # Installation
11
- NEW: PyPI: `pip install tikzplot42`.
11
+ PyPI: `pip install tikzplot42`.
12
12
  Alternativley, download this package and install using: `pip install [path]`, where [path] is the path to the directory, containing `pyproject.toml`.
13
13
 
14
14
  ## Python usage
@@ -39,7 +39,8 @@ Some basic plot commands are already implemented with commonly used arguments:
39
39
  - `stem()`,
40
40
  - `fill_between()`,
41
41
  - `hlines()/vlines()`,
42
- - `histogram()`,
42
+ - `hist()`,
43
+ - `bar()/barh()`,
43
44
  - `step()`,
44
45
  - `imshow()`,
45
46
  - `text()`,
@@ -90,7 +91,6 @@ For plot configurations (default sizes, paddings, etc.), use `from tikzplot impo
90
91
  Currently supported parameters are listed with their default values in `src/tikzplot/config.py`.
91
92
 
92
93
  ## More features coming soon...
93
- - bar plots,
94
- - more developed styles,
94
+ - additional arguments supprot for implemented commands,
95
95
  - improved 3D plots (currently only basic support: plot, errorbar, fill_between, scatter, plot_wireframe, plot_surface),
96
96
  - ...
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "tikzplot42"
7
- version = "0.4.7"
7
+ version = "0.5.0"
8
8
  description = "TikzPlot to make TikZ/PGFPlots plots with matplotlib.pyplot-like syntax."
9
9
  authors = [
10
10
  { name = "Zan Ambrozic", email = "zan.ambrozic7@gmail.com" }
11
11
  ]
12
12
  readme = "README.md"
13
- requires-python = ">=3.9"
13
+ requires-python = ">=3.12"
14
14
  license = { file = "LICENSE" }
15
15
  keywords = ["tikz", "pgfplots", "matplotlib", "latex", "plotting"]
16
16
  classifiers = [
@@ -18,12 +18,9 @@ classifiers = [
18
18
  "Intended Audience :: Science/Research",
19
19
  "Intended Audience :: Developers",
20
20
  "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
21
- "Programming Language :: Python :: 3",
22
- "Programming Language :: Python :: 3 :: Only",
23
- "Programming Language :: Python :: 3.9",
24
- "Programming Language :: Python :: 3.10",
25
- "Programming Language :: Python :: 3.11",
26
21
  "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
23
+ "Programming Language :: Python :: 3.14",
27
24
  "Topic :: Scientific/Engineering :: Visualization",
28
25
  ]
29
26
  dependencies = ["numpy", "matplotlib"]