PlotPy 2.0.0__tar.gz → 2.0.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 (472) hide show
  1. {PlotPy-2.0.0 → PlotPy-2.0.2}/PKG-INFO +5 -3
  2. {PlotPy-2.0.0 → PlotPy-2.0.2}/PlotPy.egg-info/PKG-INFO +5 -3
  3. {PlotPy-2.0.0 → PlotPy-2.0.2}/PlotPy.egg-info/SOURCES.txt +2 -1
  4. {PlotPy-2.0.0 → PlotPy-2.0.2}/PlotPy.egg-info/requires.txt +1 -0
  5. {PlotPy-2.0.0 → PlotPy-2.0.2}/README.md +3 -2
  6. PlotPy-2.0.2/doc/changelog.rst +2 -0
  7. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/conf.py +1 -0
  8. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/contribute.rst +8 -2
  9. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/plot/overview.rst +3 -0
  10. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/plot/reference.rst +2 -0
  11. PlotPy-2.0.2/doc/images/panorama.png +0 -0
  12. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/panorama.svg +130 -130
  13. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/index.rst +7 -2
  14. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/intro/index.rst +1 -0
  15. PlotPy-2.0.2/doc/intro/motivation.rst +51 -0
  16. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/intro/overview.rst +29 -5
  17. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/requirements.rst +3 -0
  18. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/__init__.py +1 -1
  19. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/shape.py +0 -1
  20. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/interfaces/__init__.py +2 -0
  21. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/interfaces/items.py +9 -5
  22. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/io.py +4 -0
  23. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/__init__.py +2 -0
  24. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/annotation.py +9 -1
  25. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/curve/__init__.py +2 -0
  26. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/curve/base.py +0 -1
  27. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/histogram.py +29 -6
  28. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/__init__.py +2 -0
  29. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/base.py +10 -4
  30. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/misc.py +11 -5
  31. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/__init__.py +2 -0
  32. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/base.py +0 -1
  33. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/point.py +0 -1
  34. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/range.py +51 -2
  35. PlotPy-2.0.2/plotpy/locale/fr/LC_MESSAGES/plotpy.mo +0 -0
  36. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/mathutils/geometry.py +260 -260
  37. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/__init__.py +2 -0
  38. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/contrastadjustment.py +31 -19
  39. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/csection/__init__.py +2 -0
  40. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/csection/csitem.py +0 -8
  41. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/plot/__init__.py +2 -0
  42. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/plot/base.py +12 -5
  43. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/pyplot.py +2 -0
  44. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/__init__.py +1 -0
  45. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/histogram.py +43 -23
  46. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_manager.py +21 -0
  47. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_mandelbrot.py +19 -13
  48. PlotPy-2.0.2/plotpy/tests/widgets/test_resize_dialog.py +71 -0
  49. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_simple_window.py +60 -23
  50. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/__init__.py +1 -0
  51. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/annotation.py +0 -8
  52. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/curve.py +8 -2
  53. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/image.py +1 -1
  54. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/misc.py +1 -1
  55. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/plot.py +1 -0
  56. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/resizedialog.py +3 -1
  57. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/selectdialog.py +7 -1
  58. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy-tests.desktop +10 -10
  59. {PlotPy-2.0.0 → PlotPy-2.0.2}/pyproject.toml +1 -0
  60. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/contour2d.c +96 -96
  61. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/histogram2d.c +97 -97
  62. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/mandelbrot.c +97 -97
  63. PlotPy-2.0.0/doc/images/panorama.png +0 -0
  64. PlotPy-2.0.0/plotpy/locale/fr/LC_MESSAGES/plotpy.mo +0 -0
  65. PlotPy-2.0.0/plotpy/tests/widgets/test_qtdesigner_ui.py +0 -19
  66. PlotPy-2.0.0/plotpy/tests/widgets/test_resize_dialog.py +0 -65
  67. {PlotPy-2.0.0 → PlotPy-2.0.2}/LICENSE +0 -0
  68. {PlotPy-2.0.0 → PlotPy-2.0.2}/MANIFEST.in +0 -0
  69. {PlotPy-2.0.0 → PlotPy-2.0.2}/PlotPy.egg-info/dependency_links.txt +0 -0
  70. {PlotPy-2.0.0 → PlotPy-2.0.2}/PlotPy.egg-info/entry_points.txt +0 -0
  71. {PlotPy-2.0.0 → PlotPy-2.0.2}/PlotPy.egg-info/top_level.txt +0 -0
  72. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/_static/favicon.ico +0 -0
  73. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/build.rst +0 -0
  74. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/guiqwt_to_plotpy.csv +0 -0
  75. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/guiqwt_to_plotpy.rst +0 -0
  76. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/index.rst +0 -0
  77. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/platforms.rst +0 -0
  78. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/v1_to_v2.csv +0 -0
  79. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/v1_to_v2.rst +0 -0
  80. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/fit.rst +0 -0
  81. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/fliprotate.rst +0 -0
  82. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/imagefile.rst +0 -0
  83. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/index.rst +0 -0
  84. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/io.rst +0 -0
  85. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/items/builder.rst +0 -0
  86. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/items/examples.rst +0 -0
  87. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/items/index.rst +0 -0
  88. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/items/overview.rst +0 -0
  89. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/items/reference.rst +0 -0
  90. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/mathutils/colormap.rst +0 -0
  91. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/mathutils/geometry.rst +0 -0
  92. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/mathutils/index.rst +0 -0
  93. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/mathutils/scaler.rst +0 -0
  94. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/panels/index.rst +0 -0
  95. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/panels/overview.rst +0 -0
  96. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/panels/reference.rst +0 -0
  97. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/plot/examples.rst +0 -0
  98. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/plot/index.rst +0 -0
  99. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/pyplot.rst +0 -0
  100. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/resizedialog.rst +0 -0
  101. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/rotatecrop.rst +0 -0
  102. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/selectdialog.rst +0 -0
  103. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/signals.rst +0 -0
  104. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/styles/index.rst +0 -0
  105. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/styles/overview.rst +0 -0
  106. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/styles/reference.rst +0 -0
  107. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/tools/examples.rst +0 -0
  108. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/tools/index.rst +0 -0
  109. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/tools/overview.rst +0 -0
  110. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/tools/reference.rst +0 -0
  111. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/my_plot_manager.png +0 -0
  112. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/my_plot_manager.svg +0 -0
  113. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/plot_widgets.png +0 -0
  114. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/plot_widgets.svg +0 -0
  115. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/plotpy-banner.png +0 -0
  116. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/plotpy-vertical.png +0 -0
  117. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/__init__.png +0 -0
  118. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/computations.png +0 -0
  119. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/contrast.png +0 -0
  120. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/cross_section.png +0 -0
  121. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/cross_section2.png +0 -0
  122. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/dotarraydemo.png +0 -0
  123. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/filtertest1.png +0 -0
  124. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/filtertest2.png +0 -0
  125. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/fit.png +0 -0
  126. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/get_point.png +0 -0
  127. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/hist2d.png +0 -0
  128. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/image_plot_tools.png +0 -0
  129. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/imagefilter.png +0 -0
  130. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/imagesuperp.png +0 -0
  131. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/imagexy.png +0 -0
  132. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/manager.png +0 -0
  133. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/mandelbrot.png +0 -0
  134. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/pcolor.png +0 -0
  135. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/plot.png +0 -0
  136. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/simple_dialog.png +0 -0
  137. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/simple_window.png +0 -0
  138. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/transform.png +0 -0
  139. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/intro/examples.rst +0 -0
  140. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/intro/installation.rst +0 -0
  141. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/intro/licenses.rst +0 -0
  142. {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/update_requirements.py +0 -0
  143. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/__init__.py +0 -0
  144. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/annotation.py +0 -0
  145. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/curvemarker.py +0 -0
  146. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/image.py +0 -0
  147. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/label.py +0 -0
  148. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/plot.py +0 -0
  149. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/config.py +0 -0
  150. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/constants.py +0 -0
  151. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/coords.py +0 -0
  152. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/events.py +0 -0
  153. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/apply.png +0 -0
  154. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/arredit.png +0 -0
  155. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/arrow_down.png +0 -0
  156. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/arrow_up.png +0 -0
  157. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/autorefresh.png +0 -0
  158. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/autoscale.png +0 -0
  159. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/axes.png +0 -0
  160. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/busy.png +0 -0
  161. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/cell_edit.png +0 -0
  162. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/center.png +0 -0
  163. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/contrast.png +0 -0
  164. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/copy.png +0 -0
  165. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/copytoclipboard.png +0 -0
  166. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/csapplylut.png +0 -0
  167. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/csautoscale.png +0 -0
  168. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/csection.png +0 -0
  169. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/csection_a.png +0 -0
  170. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/csection_oblique.png +0 -0
  171. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/csperimage.png +0 -0
  172. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/curvestyles/dots.png +0 -0
  173. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/curvestyles/lines.png +0 -0
  174. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/curvestyles/steps.png +0 -0
  175. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/curvestyles/sticks.png +0 -0
  176. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/curvetypes/xfy.png +0 -0
  177. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/curvetypes/yfx.png +0 -0
  178. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/delete.png +0 -0
  179. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/edit.png +0 -0
  180. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/edit.png +0 -0
  181. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/edit_add.png +0 -0
  182. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/editcopy.png +0 -0
  183. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/editdelete.png +0 -0
  184. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/editpaste.png +0 -0
  185. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/fileimport.png +0 -0
  186. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/filesave.png +0 -0
  187. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/imshow.png +0 -0
  188. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/insert.png +0 -0
  189. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/plot.png +0 -0
  190. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/rename.png +0 -0
  191. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/eliminate_outliers.png +0 -0
  192. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/eraser.png +0 -0
  193. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/exit.png +0 -0
  194. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/expander_down.png +0 -0
  195. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/expander_right.png +0 -0
  196. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/export.png +0 -0
  197. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/file.png +0 -0
  198. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/fileclose.png +0 -0
  199. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/fileimport.png +0 -0
  200. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filenew.png +0 -0
  201. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/fileopen.png +0 -0
  202. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filesave.png +0 -0
  203. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filesaveas.png +0 -0
  204. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/doc.png +0 -0
  205. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/gif.png +0 -0
  206. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/html.png +0 -0
  207. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/jpg.png +0 -0
  208. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/pdf.png +0 -0
  209. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/png.png +0 -0
  210. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/pps.png +0 -0
  211. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/ps.png +0 -0
  212. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/tar.png +0 -0
  213. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/tgz.png +0 -0
  214. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/tif.png +0 -0
  215. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/txt.png +0 -0
  216. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/xls.png +0 -0
  217. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/zip.png +0 -0
  218. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/font.png +0 -0
  219. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/full_range.png +0 -0
  220. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/funct.png +0 -0
  221. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/hcursor.png +0 -0
  222. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/hflip.png +0 -0
  223. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/imagestats.png +0 -0
  224. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/item_list.png +0 -0
  225. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/annotation.png +0 -0
  226. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/curve.png +0 -0
  227. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/errorbar.png +0 -0
  228. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/grid.png +0 -0
  229. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/histogram.png +0 -0
  230. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/histogram2d.png +0 -0
  231. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/image.png +0 -0
  232. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/label.png +0 -0
  233. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/legend.png +0 -0
  234. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/magnifier.png +0 -0
  235. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/cross.png +0 -0
  236. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/diamond.png +0 -0
  237. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/ellipse.png +0 -0
  238. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/hexagon.png +0 -0
  239. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/point.png +0 -0
  240. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/square.png +0 -0
  241. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/star.png +0 -0
  242. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/triangle_d.png +0 -0
  243. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/triangle_l.png +0 -0
  244. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/triangle_r.png +0 -0
  245. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/triangle_u.png +0 -0
  246. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/xcross.png +0 -0
  247. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markerstyles/cross_marker.png +0 -0
  248. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markerstyles/horiz_marker.png +0 -0
  249. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markerstyles/vert_marker.png +0 -0
  250. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/mask/mask_circle.png +0 -0
  251. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/mask/mask_circle_outside.png +0 -0
  252. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/mask/mask_rectangle.png +0 -0
  253. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/mask/mask_rectangle_outside.png +0 -0
  254. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/mask/mask_tool.png +0 -0
  255. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/max.png +0 -0
  256. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/min.png +0 -0
  257. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/move.png +0 -0
  258. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/none.png +0 -0
  259. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/not_found.png +0 -0
  260. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/on_curve.png +0 -0
  261. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/bdiagpattern.png +0 -0
  262. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/crosspattern.png +0 -0
  263. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense1pattern.png +0 -0
  264. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense2pattern.png +0 -0
  265. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense3pattern.png +0 -0
  266. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense4pattern.png +0 -0
  267. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense5pattern.png +0 -0
  268. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense6pattern.png +0 -0
  269. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense7pattern.png +0 -0
  270. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/diagcrosspattern.png +0 -0
  271. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/fdiagpattern.png +0 -0
  272. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/horpattern.png +0 -0
  273. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/nobrush.png +0 -0
  274. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/solidpattern.png +0 -0
  275. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/verpattern.png +0 -0
  276. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/plotpy-banner.svg +0 -0
  277. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/plotpy-vertical.svg +0 -0
  278. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/plotpy.svg +0 -0
  279. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/point_selection.png +0 -0
  280. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/print.png +0 -0
  281. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/python.png +0 -0
  282. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/quickview.png +0 -0
  283. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/rectangular_select.png +0 -0
  284. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/refresh.png +0 -0
  285. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/save_all.png +0 -0
  286. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/scales/lin_lin.png +0 -0
  287. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/scales/lin_log.png +0 -0
  288. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/scales/log_lin.png +0 -0
  289. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/scales/log_log.png +0 -0
  290. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/selection.png +0 -0
  291. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/settings.png +0 -0
  292. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shape.png +0 -0
  293. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/circle.png +0 -0
  294. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/contour.png +0 -0
  295. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/ellipse_shape.png +0 -0
  296. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/freeform.png +0 -0
  297. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/gtaxes.png +0 -0
  298. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/marker.png +0 -0
  299. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/oblique_rectangle.png +0 -0
  300. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/point_shape.png +0 -0
  301. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/polyline.png +0 -0
  302. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/rectangle.png +0 -0
  303. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/segment.png +0 -0
  304. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/snapshot.png +0 -0
  305. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/styles/dash.png +0 -0
  306. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/styles/dashdot.png +0 -0
  307. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/styles/dashdotdot.png +0 -0
  308. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/styles/dot.png +0 -0
  309. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/styles/solid.png +0 -0
  310. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/trash.png +0 -0
  311. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/trimage_lock.png +0 -0
  312. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/trimage_unlock.png +0 -0
  313. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/vcursor.png +0 -0
  314. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/vflip.png +0 -0
  315. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/xcursor.png +0 -0
  316. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/xmax.png +0 -0
  317. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/xmin.png +0 -0
  318. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/xrange.png +0 -0
  319. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/interfaces/panel.py +0 -0
  320. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/interfaces/plotmanager.py +0 -0
  321. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/contour.py +0 -0
  322. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/curve/errorbar.py +0 -0
  323. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/grid.py +0 -0
  324. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/filter.py +0 -0
  325. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/image_items.py +0 -0
  326. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/masked.py +0 -0
  327. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/transform.py +0 -0
  328. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/label.py +0 -0
  329. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/polygon.py +0 -0
  330. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/axis.py +0 -0
  331. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/ellipse.py +0 -0
  332. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/marker.py +0 -0
  333. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/polygon.py +0 -0
  334. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/rectangle.py +0 -0
  335. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/segment.py +0 -0
  336. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/svg.py +0 -0
  337. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/lutrange.py +0 -0
  338. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/mathutils/__init__.py +0 -0
  339. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/mathutils/_cm.py +0 -0
  340. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/mathutils/arrayfuncs.py +0 -0
  341. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/mathutils/colormap.py +0 -0
  342. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/mathutils/scaler.py +0 -0
  343. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/base.py +0 -0
  344. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/csection/csplot.py +0 -0
  345. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/csection/cswidget.py +0 -0
  346. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/itemlist.py +0 -0
  347. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/plot/interactive.py +0 -0
  348. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/plot/manager.py +0 -0
  349. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/plot/plotwidget.py +0 -0
  350. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/axes.py +0 -0
  351. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/base.py +0 -0
  352. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/curve.py +0 -0
  353. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/errorbar.py +0 -0
  354. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/image.py +0 -0
  355. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/label.py +0 -0
  356. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/shape.py +0 -0
  357. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/__init__.py +0 -0
  358. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/benchmarks/__init__.py +0 -0
  359. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/benchmarks/test_benchmarks.py +0 -0
  360. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/benchmarks/test_bigimages.py +0 -0
  361. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/benchmarks/test_loadtest.py +0 -0
  362. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/conftest.py +0 -0
  363. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/data/brain.png +0 -0
  364. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/data/brain_cylinder.png +0 -0
  365. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/data/mr-brain.dcm +0 -0
  366. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/data/svg_target.svg +0 -0
  367. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/data/svg_tool.svg +0 -0
  368. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/data.py +0 -0
  369. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/__init__.py +0 -0
  370. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_auto_curve_image.py +0 -0
  371. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_autoscale_shapes.py +0 -0
  372. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_builder.py +0 -0
  373. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_computations.py +0 -0
  374. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_contrast.py +0 -0
  375. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_cursors.py +0 -0
  376. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_dicom_image.py +0 -0
  377. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_fit.py +0 -0
  378. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_image_coords.py +0 -0
  379. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_imagefilter.py +0 -0
  380. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_imagesuperp.py +0 -0
  381. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_loadsaveitems_hdf5.py +0 -0
  382. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_loadsaveitems_json.py +0 -0
  383. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_loadsaveitems_pickle.py +0 -0
  384. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_no_auto_tools.py +0 -0
  385. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_plot_log.py +0 -0
  386. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_plot_types.py +0 -0
  387. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_plot_yreverse.py +0 -0
  388. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_pyplot.py +0 -0
  389. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_resize.py +0 -0
  390. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/__init__.py +0 -0
  391. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_annotations.py +0 -0
  392. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_curves.py +0 -0
  393. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_hist2d.py +0 -0
  394. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_histogram.py +0 -0
  395. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_image.py +0 -0
  396. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_image_contour.py +0 -0
  397. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_image_masked.py +0 -0
  398. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_image_masked_xy.py +0 -0
  399. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_image_rgb.py +0 -0
  400. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_image_xy.py +0 -0
  401. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_pcolor.py +0 -0
  402. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_polygons.py +0 -0
  403. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_svgshapes.py +0 -0
  404. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_transform.py +0 -0
  405. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/__init__.py +0 -0
  406. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_actiontool.py +0 -0
  407. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_cross_section.py +0 -0
  408. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_cross_section_oblique.py +0 -0
  409. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_customize_shape_tool.py +0 -0
  410. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_get_point.py +0 -0
  411. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_get_rectangle.py +0 -0
  412. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_get_rectangle_with_svg.py +0 -0
  413. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_get_segment.py +0 -0
  414. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_image_plot_tools.py +0 -0
  415. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/__init__.py +0 -0
  416. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_baseplot.py +0 -0
  417. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_builder_annotation.py +0 -0
  418. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_builder_curve.py +0 -0
  419. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_builder_image.py +0 -0
  420. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_builder_shape.py +0 -0
  421. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_contour.py +0 -0
  422. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_fontparam.py +0 -0
  423. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_geometry.py +0 -0
  424. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_highprecisionxy.py +0 -0
  425. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_io.py +0 -0
  426. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_line.py +0 -0
  427. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_plot_curve.py +0 -0
  428. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_plot_image.py +0 -0
  429. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_seg_dist.py +0 -0
  430. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_styles.py +0 -0
  431. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_tools_export.py +0 -0
  432. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/vistools.py +0 -0
  433. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/__init__.py +0 -0
  434. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_dotarraydemo.py +0 -0
  435. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_filtertest1.py +0 -0
  436. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_filtertest2.py +0 -0
  437. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_fliprotate.py +0 -0
  438. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_plot_timecurve.py +0 -0
  439. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_qtdesigner.py +0 -0
  440. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_qtdesigner.ui +0 -0
  441. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_rotatecrop.py +0 -0
  442. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_simple_dialog.py +0 -0
  443. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_syncplot.py +0 -0
  444. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/axes.py +0 -0
  445. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/base.py +0 -0
  446. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/cross_section.py +0 -0
  447. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/cursor.py +0 -0
  448. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/item.py +0 -0
  449. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/label.py +0 -0
  450. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/selection.py +0 -0
  451. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/shape.py +0 -0
  452. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/__init__.py +0 -0
  453. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/about.py +0 -0
  454. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/basetransform.py +0 -0
  455. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/fit.py +0 -0
  456. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/fliprotate.py +0 -0
  457. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/imagefile.py +0 -0
  458. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/qtdesigner.py +0 -0
  459. {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/rotatecrop.py +0 -0
  460. {PlotPy-2.0.0 → PlotPy-2.0.2}/qtdesigner/plotplugin.py +0 -0
  461. {PlotPy-2.0.0 → PlotPy-2.0.2}/setup.cfg +0 -0
  462. {PlotPy-2.0.0 → PlotPy-2.0.2}/setup.py +0 -0
  463. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/arrays.hpp +0 -0
  464. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/contour2d.pyx +0 -0
  465. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/debug.hpp +0 -0
  466. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/histogram2d.pyx +0 -0
  467. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/mandelbrot.pyx +0 -0
  468. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/pcolor.cpp +0 -0
  469. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/points.hpp +0 -0
  470. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/scaler.cpp +0 -0
  471. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/scaler.hpp +0 -0
  472. {PlotPy-2.0.0 → PlotPy-2.0.2}/src/traits.hpp +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PlotPy
3
- Version: 2.0.0
3
+ Version: 2.0.2
4
4
  Summary: Curve and image plotting tools for Python/Qt applications
5
5
  Author-email: Codra <p.raybaut@codra.fr>
6
6
  License: BSD 3-Clause License
@@ -69,6 +69,7 @@ Requires-Dist: Cython; extra == "dev"
69
69
  Provides-Extra: doc
70
70
  Requires-Dist: PyQt5; extra == "doc"
71
71
  Requires-Dist: sphinx; extra == "doc"
72
+ Requires-Dist: myst_parser; extra == "doc"
72
73
  Requires-Dist: sphinx-copybutton; extra == "doc"
73
74
  Requires-Dist: sphinx_qt_documentation; extra == "doc"
74
75
  Requires-Dist: python-docs-theme; extra == "doc"
@@ -106,12 +107,13 @@ providing a unified framework for creating scientific GUIs with Python and Qt.
106
107
  <img src="https://raw.githubusercontent.com/PlotPyStack/plotpy/master/doc/images/panorama.png">
107
108
 
108
109
  See [documentation](https://plotpy.readthedocs.io/en/latest/) for more details on
109
- the library and [changelog](CHANGELOG.md) for recent history of changes.
110
+ the library and [changelog](https://github.com/PlotPyStack/PlotPy/blob/master/CHANGELOG.md)
111
+ for recent history of changes.
110
112
 
111
113
  Copyrights and licensing:
112
114
 
113
115
  * Copyright © 2023 [CEA](https://www.cea.fr), [Codra](https://codra.net/), [Pierre Raybaut](https://github.com/PierreRaybaut).
114
- * Licensed under the terms of the BSD 3-Clause (see [LICENSE](LICENSE)).
116
+ * Licensed under the terms of the BSD 3-Clause (see [LICENSE](https://github.com/PlotPyStack/PlotPy/blob/master/LICENSE)).
115
117
 
116
118
  ## Features
117
119
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PlotPy
3
- Version: 2.0.0
3
+ Version: 2.0.2
4
4
  Summary: Curve and image plotting tools for Python/Qt applications
5
5
  Author-email: Codra <p.raybaut@codra.fr>
6
6
  License: BSD 3-Clause License
@@ -69,6 +69,7 @@ Requires-Dist: Cython; extra == "dev"
69
69
  Provides-Extra: doc
70
70
  Requires-Dist: PyQt5; extra == "doc"
71
71
  Requires-Dist: sphinx; extra == "doc"
72
+ Requires-Dist: myst_parser; extra == "doc"
72
73
  Requires-Dist: sphinx-copybutton; extra == "doc"
73
74
  Requires-Dist: sphinx_qt_documentation; extra == "doc"
74
75
  Requires-Dist: python-docs-theme; extra == "doc"
@@ -106,12 +107,13 @@ providing a unified framework for creating scientific GUIs with Python and Qt.
106
107
  <img src="https://raw.githubusercontent.com/PlotPyStack/plotpy/master/doc/images/panorama.png">
107
108
 
108
109
  See [documentation](https://plotpy.readthedocs.io/en/latest/) for more details on
109
- the library and [changelog](CHANGELOG.md) for recent history of changes.
110
+ the library and [changelog](https://github.com/PlotPyStack/PlotPy/blob/master/CHANGELOG.md)
111
+ for recent history of changes.
110
112
 
111
113
  Copyrights and licensing:
112
114
 
113
115
  * Copyright © 2023 [CEA](https://www.cea.fr), [Codra](https://codra.net/), [Pierre Raybaut](https://github.com/PierreRaybaut).
114
- * Licensed under the terms of the BSD 3-Clause (see [LICENSE](LICENSE)).
116
+ * Licensed under the terms of the BSD 3-Clause (see [LICENSE](https://github.com/PlotPyStack/PlotPy/blob/master/LICENSE)).
115
117
 
116
118
  ## Features
117
119
 
@@ -15,6 +15,7 @@ PlotPy.egg-info/dependency_links.txt
15
15
  PlotPy.egg-info/entry_points.txt
16
16
  PlotPy.egg-info/requires.txt
17
17
  PlotPy.egg-info/top_level.txt
18
+ doc/changelog.rst
18
19
  doc/conf.py
19
20
  doc/index.rst
20
21
  doc/requirements.rst
@@ -95,6 +96,7 @@ doc/intro/examples.rst
95
96
  doc/intro/index.rst
96
97
  doc/intro/installation.rst
97
98
  doc/intro/licenses.rst
99
+ doc/intro/motivation.rst
98
100
  doc/intro/overview.rst
99
101
  plotpy/__init__.py
100
102
  plotpy/config.py
@@ -424,7 +426,6 @@ plotpy/tests/widgets/test_fliprotate.py
424
426
  plotpy/tests/widgets/test_plot_timecurve.py
425
427
  plotpy/tests/widgets/test_qtdesigner.py
426
428
  plotpy/tests/widgets/test_qtdesigner.ui
427
- plotpy/tests/widgets/test_qtdesigner_ui.py
428
429
  plotpy/tests/widgets/test_resize_dialog.py
429
430
  plotpy/tests/widgets/test_rotatecrop.py
430
431
  plotpy/tests/widgets/test_simple_dialog.py
@@ -15,6 +15,7 @@ Cython
15
15
  [doc]
16
16
  PyQt5
17
17
  sphinx
18
+ myst_parser
18
19
  sphinx-copybutton
19
20
  sphinx_qt_documentation
20
21
  python-docs-theme
@@ -26,12 +26,13 @@ providing a unified framework for creating scientific GUIs with Python and Qt.
26
26
  <img src="https://raw.githubusercontent.com/PlotPyStack/plotpy/master/doc/images/panorama.png">
27
27
 
28
28
  See [documentation](https://plotpy.readthedocs.io/en/latest/) for more details on
29
- the library and [changelog](CHANGELOG.md) for recent history of changes.
29
+ the library and [changelog](https://github.com/PlotPyStack/PlotPy/blob/master/CHANGELOG.md)
30
+ for recent history of changes.
30
31
 
31
32
  Copyrights and licensing:
32
33
 
33
34
  * Copyright © 2023 [CEA](https://www.cea.fr), [Codra](https://codra.net/), [Pierre Raybaut](https://github.com/PierreRaybaut).
34
- * Licensed under the terms of the BSD 3-Clause (see [LICENSE](LICENSE)).
35
+ * Licensed under the terms of the BSD 3-Clause (see [LICENSE](https://github.com/PlotPyStack/PlotPy/blob/master/LICENSE)).
35
36
 
36
37
  ## Features
37
38
 
@@ -0,0 +1,2 @@
1
+ .. include:: ../CHANGELOG.md
2
+ :parser: myst_parser.sphinx_
@@ -18,6 +18,7 @@ release = plotpy.__version__
18
18
  # -- General configuration ---------------------------------------------------
19
19
  extensions = [
20
20
  "sphinx.ext.autodoc",
21
+ "myst_parser",
21
22
  "sphinx.ext.todo",
22
23
  "sphinx.ext.viewcode",
23
24
  "sphinx.ext.intersphinx",
@@ -93,9 +93,15 @@ development environment. The easiest way to do this is to use `virtualenv
93
93
  <http://pypi.python.org/pypi/virtualenv>`_ and `pip
94
94
  <http://pypi.python.org/pypi/pip>`_.
95
95
 
96
- Some environment variables are required to be set before using the project from
97
- within Visual Studio Code (used in `launch.json` and `tasks.json`). These are:
96
+ Some parameters are required to be set before using the project from within
97
+ Visual Studio Code (used in `launch.json` and `tasks.json`). These are:
98
98
 
99
99
  * ``PPSTACK_PYTHONEXE``: The path to the Python interpreter to use. This is
100
100
  used to launch the application from within Visual Studio Code. If not set,
101
101
  the default Python interpreter will be used.
102
+
103
+ * `.env` file: This file is used to set environment variables for the
104
+ application. It is used to set the ``PYTHONPATH`` environment variable to
105
+ the root of the project. This is required to be able to import the project
106
+ modules from within Visual Studio Code. To create this file, copy the
107
+ ``.env.template`` file to ``.env`` (and eventually add your own paths).
@@ -18,6 +18,9 @@ The `plot` module provides the following features:
18
18
  curve/image displaying with an integrated and preconfigured `plot manager`
19
19
  providing the `item list panel` and curve/image-related `tools`
20
20
 
21
+ * :py:class:`.SyncPlotWindow`: a ready-to-use window for curve/image
22
+ displaying with plot axes synchronization
23
+
21
24
  .. seealso::
22
25
 
23
26
  :ref:`items`
@@ -14,6 +14,8 @@ High-level features
14
14
  :members:
15
15
  .. autoclass:: plotpy.plot.PlotWindow
16
16
  :members:
17
+ .. autoclass:: plotpy.plot.SyncPlotWindow
18
+ :members:
17
19
 
18
20
  Low-level features
19
21
  ^^^^^^^^^^^^^^^^^^
Binary file