PlotPy 2.1.2__tar.gz → 2.2.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.
- {PlotPy-2.1.2 → PlotPy-2.2.0}/PKG-INFO +2 -2
- {PlotPy-2.1.2 → PlotPy-2.2.0}/PlotPy.egg-info/PKG-INFO +2 -2
- {PlotPy-2.1.2 → PlotPy-2.2.0}/PlotPy.egg-info/SOURCES.txt +181 -172
- {PlotPy-2.1.2 → PlotPy-2.2.0}/PlotPy.egg-info/requires.txt +1 -1
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/signals.rst +1 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/requirements.rst +18 -18
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/__init__.py +2 -2
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/builder/curvemarker.py +1 -1
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/config.py +1 -1
- PlotPy-2.2.0/plotpy/data/colormaps_default.json +17070 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/events.py +132 -19
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/external/sliders/_misc.py +1 -1
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/external/sliders/_range_style.py +1 -1
- PlotPy-2.2.0/plotpy/locale/fr/LC_MESSAGES/plotpy.mo +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/mathutils/colormap.py +11 -3
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/panels/csection/csitem.py +1 -1
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/plot/base.py +10 -3
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/styles/base.py +1 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/styles/curve.py +1 -1
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/styles/image.py +1 -1
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/styles/polygonmap.py +1 -1
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_cross_section_line.py +1 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_cross_section_oblique.py +2 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_get_rectangle_with_svg.py +1 -1
- PlotPy-2.2.0/plotpy/tests/unit/test_aspect_ratio_tool.py +38 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_baseplot.py +0 -1
- PlotPy-2.2.0/plotpy/tests/unit/test_display_coords_tool.py +29 -0
- PlotPy-2.2.0/plotpy/tests/unit/test_line_cross_section_tool.py +29 -0
- PlotPy-2.2.0/plotpy/tests/unit/test_multiline_tools.py +64 -0
- PlotPy-2.2.0/plotpy/tests/unit/test_oblique_cross_section_tool.py +29 -0
- PlotPy-2.2.0/plotpy/tests/unit/test_plot_image.py +146 -0
- PlotPy-2.2.0/plotpy/tests/unit/test_point_tools.py +163 -0
- PlotPy-2.2.0/plotpy/tests/unit/test_rect_zoom.py +69 -0
- PlotPy-2.2.0/plotpy/tests/unit/test_shape_tools.py +181 -0
- PlotPy-2.2.0/plotpy/tests/unit/utils.py +158 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/base.py +6 -2
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/cross_section.py +1 -1
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/curve.py +27 -36
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/image.py +7 -6
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/colormap/manager.py +95 -26
- {PlotPy-2.1.2 → PlotPy-2.2.0}/pyproject.toml +1 -1
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/contour2d.c +96 -96
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/histogram2d.c +97 -97
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/mandelbrot.c +97 -97
- PlotPy-2.1.2/plotpy/data/colormaps_default.json +0 -8990
- PlotPy-2.1.2/plotpy/locale/fr/LC_MESSAGES/plotpy.mo +0 -0
- PlotPy-2.1.2/plotpy/tests/unit/test_plot_image.py +0 -141
- {PlotPy-2.1.2 → PlotPy-2.2.0}/LICENSE +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/MANIFEST.in +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/PlotPy.egg-info/dependency_links.txt +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/PlotPy.egg-info/entry_points.txt +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/PlotPy.egg-info/top_level.txt +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/README.md +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/_static/favicon.ico +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/changelog.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/conf.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/dev/build.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/dev/contribute.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/dev/guiqwt_to_plotpy.csv +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/dev/guiqwt_to_plotpy.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/dev/index.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/dev/platforms.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/dev/v1_to_guidata_v3.csv +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/dev/v1_to_v2.csv +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/dev/v1_to_v2.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/colormapmanager.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/events.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/fit.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/fliprotate.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/imagefile.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/index.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/io.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/items/builder.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/items/examples.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/items/index.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/items/overview.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/items/reference.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/mathutils/colormaps.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/mathutils/geometry.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/mathutils/index.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/mathutils/scaler.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/panels/index.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/panels/overview.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/panels/reference.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/plot/examples.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/plot/index.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/plot/overview.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/plot/reference.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/pyplot.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/resizedialog.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/rotatecrop.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/selectdialog.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/styles/index.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/styles/overview.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/styles/reference.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/tools/examples.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/tools/index.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/tools/overview.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/features/tools/reference.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/my_plot_manager.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/my_plot_manager.svg +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/panorama.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/panorama.svg +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/plot_widgets.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/plot_widgets.svg +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/plotpy-banner.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/plotpy-vertical.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/__init__.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/computations.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/contrast.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/cross_section.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/cross_section2.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/dotarraydemo.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/filtertest1.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/filtertest2.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/fit.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/get_point.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/hist2d.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/image_plot_tools.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/imagefilter.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/imagesuperp.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/imagexy.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/manager.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/mandelbrot.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/pcolor.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/plot.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/simple_dialog.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/simple_window.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/images/screenshots/transform.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/index.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/intro/examples.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/intro/index.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/intro/installation.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/intro/licenses.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/intro/motivation.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/intro/overview.rst +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/doc/update_requirements.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/builder/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/builder/annotation.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/builder/image.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/builder/label.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/builder/plot.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/builder/shape.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/constants.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/coords.py +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/apply.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/arredit.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/arrow_down.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/arrow_up.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/autorefresh.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/autoscale.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/axes.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/busy.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/cell_edit.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/center.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/cmap_edit.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/contrast.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/copy.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/copytoclipboard.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csapplylut.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csautoscale.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csection.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csection_a.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csection_line.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csection_oblique.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/csperimage.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curve_downsample.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curvestyles/dots.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curvestyles/lines.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curvestyles/steps.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curvestyles/sticks.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curvetypes/xfy.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/curvetypes/yfx.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/delete.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/edit.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/edit_point_selection.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/edit.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/edit_add.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/editcopy.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/editdelete.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/editpaste.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/fileimport.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/filesave.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/imshow.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/insert.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/plot.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/editors/rename.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/eliminate_outliers.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/eraser.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/exit.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/expander_down.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/expander_right.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/export.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/file.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/fileclose.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/fileimport.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filenew.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/fileopen.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filesave.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filesaveas.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/doc.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/gif.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/html.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/jpg.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/pdf.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/png.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/pps.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/ps.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/tar.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/tgz.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/tif.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/txt.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/xls.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/filetypes/zip.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/font.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/full_range.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/funct.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/hcursor.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/hflip.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/imagestats.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/item_list.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/annotation.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/curve.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/errorbar.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/grid.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/histogram.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/histogram2d.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/image.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/label.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/legend.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/items/polygonmap.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/magnifier.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/cross.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/diamond.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/ellipse.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/hexagon.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/point.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/square.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/star.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/triangle_d.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/triangle_l.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/triangle_r.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/triangle_u.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markers/xcross.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markerstyles/cross_marker.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markerstyles/horiz_marker.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/markerstyles/vert_marker.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/mask/mask_circle.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/mask/mask_circle_outside.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/mask/mask_rectangle.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/mask/mask_rectangle_outside.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/mask/mask_tool.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/max.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/min.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/move.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/multipoint_selection.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/none.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/not_found.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/on_curve.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/bdiagpattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/crosspattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense1pattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense2pattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense3pattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense4pattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense5pattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense6pattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/dense7pattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/diagcrosspattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/fdiagpattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/horpattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/nobrush.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/solidpattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/patterns/verpattern.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/plotpy-banner.svg +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/plotpy-vertical.svg +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/plotpy.svg +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/point_selection.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/print.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/python.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/quickview.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/rectangular_select.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/refresh.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/save_all.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/scales/lin_lin.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/scales/lin_log.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/scales/log_lin.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/scales/log_log.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/selection.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/settings.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shape.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/circle.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/contour.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/ellipse_shape.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/freeform.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/gtaxes.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/marker.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/oblique_rectangle.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/point_shape.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/polyline.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/rectangle.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/shapes/segment.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/snapshot.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/styles/dash.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/styles/dashdot.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/styles/dashdotdot.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/styles/dot.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/styles/solid.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/trash.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/trimage_lock.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/trimage_unlock.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/vcursor.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/vflip.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/xcursor.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/xmax.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/xmin.png +0 -0
- {PlotPy-2.1.2/plotpy/images → PlotPy-2.2.0/plotpy/data/icons}/xrange.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/external/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/external/sliders/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/external/sliders/_generic_range_slider.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/external/sliders/_generic_slider.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/external/sliders/_labeled.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/external/sliders/_sliders.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/interfaces/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/interfaces/items.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/interfaces/panel.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/interfaces/plotmanager.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/io.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/annotation.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/contour.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/curve/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/curve/base.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/curve/errorbar.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/grid.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/histogram.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/image/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/image/base.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/image/filter.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/image/image_items.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/image/masked.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/image/misc.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/image/transform.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/label.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/polygonmap.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/shape/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/shape/axis.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/shape/base.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/shape/ellipse.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/shape/marker.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/shape/point.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/shape/polygon.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/shape/range.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/shape/rectangle.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/shape/segment.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/items/shape/svg.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/lutrange.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/mathutils/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/mathutils/arrayfuncs.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/mathutils/geometry.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/mathutils/scaler.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/panels/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/panels/base.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/panels/contrastadjustment.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/panels/csection/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/panels/csection/csplot.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/panels/csection/cswidget.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/panels/itemlist.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/plot/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/plot/interactive.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/plot/manager.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/plot/plotwidget.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/pyplot.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/styles/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/styles/axes.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/styles/errorbar.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/styles/histogram.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/styles/label.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/styles/shape.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/benchmarks/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/benchmarks/test_benchmarks.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/benchmarks/test_bigimages.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/benchmarks/test_loadtest.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/conftest.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/data/brain.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/data/brain_cylinder.png +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/data/mr-brain.dcm +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/data/svg_target.svg +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/data/svg_tool.svg +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/data.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_auto_curve_image.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_autoscale_shapes.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_builder.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_colormap_editor.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_colormap_manager.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_computations.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_contrast.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_cursors.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_dicom_image.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_fit.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_image_coords.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_imagefilter.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_imagesuperp.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_loadsaveitems_hdf5.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_loadsaveitems_json.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_loadsaveitems_pickle.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_manager.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_no_auto_tools.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_plot_log.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_plot_types.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_plot_yreverse.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_pyplot.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/features/test_resize.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_annotations.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_curves.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_hist2d.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_histogram.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_image.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_image_contour.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_image_masked.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_image_masked_xy.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_image_rgb.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_image_xy.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_mandelbrot.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_pcolor.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_polygons.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_svgshapes.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/items/test_transform.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_actiontool.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_cross_section.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_customize_shape_tool.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_downsample_curve.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_edit_point.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_get_point.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_get_points.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_get_rectangle.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_get_segment.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/tools/test_image_plot_tools.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_builder_annotation.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_builder_curve.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_builder_image.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_builder_shape.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_contour.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_fontparam.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_geometry.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_highprecisionxy.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_io.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_line.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_plot_curve.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_seg_dist.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_styles.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/unit/test_tools_export.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/vistools.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/test_dotarraydemo.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/test_filtertest1.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/test_filtertest2.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/test_fliprotate.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/test_plot_timecurve.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/test_qtdesigner.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/test_qtdesigner.ui +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/test_resize_dialog.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/test_rotatecrop.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/test_simple_dialog.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/test_simple_window.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tests/widgets/test_syncplot.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/annotation.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/axes.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/cursor.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/item.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/label.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/misc.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/plot.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/selection.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/tools/shape.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/about.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/basetransform.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/colormap/__init__.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/colormap/_slider.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/colormap/editor.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/colormap/widget.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/fit.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/fliprotate.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/imagefile.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/qtdesigner.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/resizedialog.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/rotatecrop.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy/widgets/selectdialog.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/plotpy-tests.desktop +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/qtdesigner/plotplugin.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/setup.cfg +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/setup.py +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/arrays.hpp +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/contour2d.pyx +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/debug.hpp +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/histogram2d.pyx +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/mandelbrot.pyx +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/pcolor.cpp +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/points.hpp +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/scaler.cpp +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/scaler.hpp +0 -0
- {PlotPy-2.1.2 → PlotPy-2.2.0}/src/traits.hpp +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PlotPy
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.0
|
|
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
|
|
@@ -55,7 +55,7 @@ Requires-Python: <4,>=3.8
|
|
|
55
55
|
Description-Content-Type: text/markdown
|
|
56
56
|
License-File: LICENSE
|
|
57
57
|
Requires-Dist: guidata>=3.1
|
|
58
|
-
Requires-Dist: PythonQwt>=0.12
|
|
58
|
+
Requires-Dist: PythonQwt>=0.12.1
|
|
59
59
|
Requires-Dist: NumPy>=1.17
|
|
60
60
|
Requires-Dist: SciPy>=1.3
|
|
61
61
|
Requires-Dist: Pillow
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PlotPy
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.0
|
|
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
|
|
@@ -55,7 +55,7 @@ Requires-Python: <4,>=3.8
|
|
|
55
55
|
Description-Content-Type: text/markdown
|
|
56
56
|
License-File: LICENSE
|
|
57
57
|
Requires-Dist: guidata>=3.1
|
|
58
|
-
Requires-Dist: PythonQwt>=0.12
|
|
58
|
+
Requires-Dist: PythonQwt>=0.12.1
|
|
59
59
|
Requires-Dist: NumPy>=1.17
|
|
60
60
|
Requires-Dist: SciPy>=1.3
|
|
61
61
|
Requires-Dist: Pillow
|
|
@@ -117,6 +117,178 @@ plotpy/builder/label.py
|
|
|
117
117
|
plotpy/builder/plot.py
|
|
118
118
|
plotpy/builder/shape.py
|
|
119
119
|
plotpy/data/colormaps_default.json
|
|
120
|
+
plotpy/data/icons/apply.png
|
|
121
|
+
plotpy/data/icons/arredit.png
|
|
122
|
+
plotpy/data/icons/arrow_down.png
|
|
123
|
+
plotpy/data/icons/arrow_up.png
|
|
124
|
+
plotpy/data/icons/autorefresh.png
|
|
125
|
+
plotpy/data/icons/autoscale.png
|
|
126
|
+
plotpy/data/icons/axes.png
|
|
127
|
+
plotpy/data/icons/busy.png
|
|
128
|
+
plotpy/data/icons/cell_edit.png
|
|
129
|
+
plotpy/data/icons/center.png
|
|
130
|
+
plotpy/data/icons/cmap_edit.png
|
|
131
|
+
plotpy/data/icons/contrast.png
|
|
132
|
+
plotpy/data/icons/copy.png
|
|
133
|
+
plotpy/data/icons/copytoclipboard.png
|
|
134
|
+
plotpy/data/icons/csapplylut.png
|
|
135
|
+
plotpy/data/icons/csautoscale.png
|
|
136
|
+
plotpy/data/icons/csection.png
|
|
137
|
+
plotpy/data/icons/csection_a.png
|
|
138
|
+
plotpy/data/icons/csection_line.png
|
|
139
|
+
plotpy/data/icons/csection_oblique.png
|
|
140
|
+
plotpy/data/icons/csperimage.png
|
|
141
|
+
plotpy/data/icons/curve_downsample.png
|
|
142
|
+
plotpy/data/icons/delete.png
|
|
143
|
+
plotpy/data/icons/edit.png
|
|
144
|
+
plotpy/data/icons/edit_point_selection.png
|
|
145
|
+
plotpy/data/icons/eliminate_outliers.png
|
|
146
|
+
plotpy/data/icons/eraser.png
|
|
147
|
+
plotpy/data/icons/exit.png
|
|
148
|
+
plotpy/data/icons/expander_down.png
|
|
149
|
+
plotpy/data/icons/expander_right.png
|
|
150
|
+
plotpy/data/icons/export.png
|
|
151
|
+
plotpy/data/icons/file.png
|
|
152
|
+
plotpy/data/icons/fileclose.png
|
|
153
|
+
plotpy/data/icons/fileimport.png
|
|
154
|
+
plotpy/data/icons/filenew.png
|
|
155
|
+
plotpy/data/icons/fileopen.png
|
|
156
|
+
plotpy/data/icons/filesave.png
|
|
157
|
+
plotpy/data/icons/filesaveas.png
|
|
158
|
+
plotpy/data/icons/font.png
|
|
159
|
+
plotpy/data/icons/full_range.png
|
|
160
|
+
plotpy/data/icons/funct.png
|
|
161
|
+
plotpy/data/icons/hcursor.png
|
|
162
|
+
plotpy/data/icons/hflip.png
|
|
163
|
+
plotpy/data/icons/imagestats.png
|
|
164
|
+
plotpy/data/icons/item_list.png
|
|
165
|
+
plotpy/data/icons/magnifier.png
|
|
166
|
+
plotpy/data/icons/max.png
|
|
167
|
+
plotpy/data/icons/min.png
|
|
168
|
+
plotpy/data/icons/move.png
|
|
169
|
+
plotpy/data/icons/multipoint_selection.png
|
|
170
|
+
plotpy/data/icons/none.png
|
|
171
|
+
plotpy/data/icons/not_found.png
|
|
172
|
+
plotpy/data/icons/on_curve.png
|
|
173
|
+
plotpy/data/icons/plotpy-banner.svg
|
|
174
|
+
plotpy/data/icons/plotpy-vertical.svg
|
|
175
|
+
plotpy/data/icons/plotpy.svg
|
|
176
|
+
plotpy/data/icons/point_selection.png
|
|
177
|
+
plotpy/data/icons/print.png
|
|
178
|
+
plotpy/data/icons/python.png
|
|
179
|
+
plotpy/data/icons/quickview.png
|
|
180
|
+
plotpy/data/icons/rectangular_select.png
|
|
181
|
+
plotpy/data/icons/refresh.png
|
|
182
|
+
plotpy/data/icons/save_all.png
|
|
183
|
+
plotpy/data/icons/selection.png
|
|
184
|
+
plotpy/data/icons/settings.png
|
|
185
|
+
plotpy/data/icons/shape.png
|
|
186
|
+
plotpy/data/icons/snapshot.png
|
|
187
|
+
plotpy/data/icons/trash.png
|
|
188
|
+
plotpy/data/icons/trimage_lock.png
|
|
189
|
+
plotpy/data/icons/trimage_unlock.png
|
|
190
|
+
plotpy/data/icons/vcursor.png
|
|
191
|
+
plotpy/data/icons/vflip.png
|
|
192
|
+
plotpy/data/icons/xcursor.png
|
|
193
|
+
plotpy/data/icons/xmax.png
|
|
194
|
+
plotpy/data/icons/xmin.png
|
|
195
|
+
plotpy/data/icons/xrange.png
|
|
196
|
+
plotpy/data/icons/curvestyles/dots.png
|
|
197
|
+
plotpy/data/icons/curvestyles/lines.png
|
|
198
|
+
plotpy/data/icons/curvestyles/steps.png
|
|
199
|
+
plotpy/data/icons/curvestyles/sticks.png
|
|
200
|
+
plotpy/data/icons/curvetypes/xfy.png
|
|
201
|
+
plotpy/data/icons/curvetypes/yfx.png
|
|
202
|
+
plotpy/data/icons/editors/edit.png
|
|
203
|
+
plotpy/data/icons/editors/edit_add.png
|
|
204
|
+
plotpy/data/icons/editors/editcopy.png
|
|
205
|
+
plotpy/data/icons/editors/editdelete.png
|
|
206
|
+
plotpy/data/icons/editors/editpaste.png
|
|
207
|
+
plotpy/data/icons/editors/fileimport.png
|
|
208
|
+
plotpy/data/icons/editors/filesave.png
|
|
209
|
+
plotpy/data/icons/editors/imshow.png
|
|
210
|
+
plotpy/data/icons/editors/insert.png
|
|
211
|
+
plotpy/data/icons/editors/plot.png
|
|
212
|
+
plotpy/data/icons/editors/rename.png
|
|
213
|
+
plotpy/data/icons/filetypes/doc.png
|
|
214
|
+
plotpy/data/icons/filetypes/gif.png
|
|
215
|
+
plotpy/data/icons/filetypes/html.png
|
|
216
|
+
plotpy/data/icons/filetypes/jpg.png
|
|
217
|
+
plotpy/data/icons/filetypes/pdf.png
|
|
218
|
+
plotpy/data/icons/filetypes/png.png
|
|
219
|
+
plotpy/data/icons/filetypes/pps.png
|
|
220
|
+
plotpy/data/icons/filetypes/ps.png
|
|
221
|
+
plotpy/data/icons/filetypes/tar.png
|
|
222
|
+
plotpy/data/icons/filetypes/tgz.png
|
|
223
|
+
plotpy/data/icons/filetypes/tif.png
|
|
224
|
+
plotpy/data/icons/filetypes/txt.png
|
|
225
|
+
plotpy/data/icons/filetypes/xls.png
|
|
226
|
+
plotpy/data/icons/filetypes/zip.png
|
|
227
|
+
plotpy/data/icons/items/annotation.png
|
|
228
|
+
plotpy/data/icons/items/curve.png
|
|
229
|
+
plotpy/data/icons/items/errorbar.png
|
|
230
|
+
plotpy/data/icons/items/grid.png
|
|
231
|
+
plotpy/data/icons/items/histogram.png
|
|
232
|
+
plotpy/data/icons/items/histogram2d.png
|
|
233
|
+
plotpy/data/icons/items/image.png
|
|
234
|
+
plotpy/data/icons/items/label.png
|
|
235
|
+
plotpy/data/icons/items/legend.png
|
|
236
|
+
plotpy/data/icons/items/polygonmap.png
|
|
237
|
+
plotpy/data/icons/markers/cross.png
|
|
238
|
+
plotpy/data/icons/markers/diamond.png
|
|
239
|
+
plotpy/data/icons/markers/ellipse.png
|
|
240
|
+
plotpy/data/icons/markers/hexagon.png
|
|
241
|
+
plotpy/data/icons/markers/point.png
|
|
242
|
+
plotpy/data/icons/markers/square.png
|
|
243
|
+
plotpy/data/icons/markers/star.png
|
|
244
|
+
plotpy/data/icons/markers/triangle_d.png
|
|
245
|
+
plotpy/data/icons/markers/triangle_l.png
|
|
246
|
+
plotpy/data/icons/markers/triangle_r.png
|
|
247
|
+
plotpy/data/icons/markers/triangle_u.png
|
|
248
|
+
plotpy/data/icons/markers/xcross.png
|
|
249
|
+
plotpy/data/icons/markerstyles/cross_marker.png
|
|
250
|
+
plotpy/data/icons/markerstyles/horiz_marker.png
|
|
251
|
+
plotpy/data/icons/markerstyles/vert_marker.png
|
|
252
|
+
plotpy/data/icons/mask/mask_circle.png
|
|
253
|
+
plotpy/data/icons/mask/mask_circle_outside.png
|
|
254
|
+
plotpy/data/icons/mask/mask_rectangle.png
|
|
255
|
+
plotpy/data/icons/mask/mask_rectangle_outside.png
|
|
256
|
+
plotpy/data/icons/mask/mask_tool.png
|
|
257
|
+
plotpy/data/icons/patterns/bdiagpattern.png
|
|
258
|
+
plotpy/data/icons/patterns/crosspattern.png
|
|
259
|
+
plotpy/data/icons/patterns/dense1pattern.png
|
|
260
|
+
plotpy/data/icons/patterns/dense2pattern.png
|
|
261
|
+
plotpy/data/icons/patterns/dense3pattern.png
|
|
262
|
+
plotpy/data/icons/patterns/dense4pattern.png
|
|
263
|
+
plotpy/data/icons/patterns/dense5pattern.png
|
|
264
|
+
plotpy/data/icons/patterns/dense6pattern.png
|
|
265
|
+
plotpy/data/icons/patterns/dense7pattern.png
|
|
266
|
+
plotpy/data/icons/patterns/diagcrosspattern.png
|
|
267
|
+
plotpy/data/icons/patterns/fdiagpattern.png
|
|
268
|
+
plotpy/data/icons/patterns/horpattern.png
|
|
269
|
+
plotpy/data/icons/patterns/nobrush.png
|
|
270
|
+
plotpy/data/icons/patterns/solidpattern.png
|
|
271
|
+
plotpy/data/icons/patterns/verpattern.png
|
|
272
|
+
plotpy/data/icons/scales/lin_lin.png
|
|
273
|
+
plotpy/data/icons/scales/lin_log.png
|
|
274
|
+
plotpy/data/icons/scales/log_lin.png
|
|
275
|
+
plotpy/data/icons/scales/log_log.png
|
|
276
|
+
plotpy/data/icons/shapes/circle.png
|
|
277
|
+
plotpy/data/icons/shapes/contour.png
|
|
278
|
+
plotpy/data/icons/shapes/ellipse_shape.png
|
|
279
|
+
plotpy/data/icons/shapes/freeform.png
|
|
280
|
+
plotpy/data/icons/shapes/gtaxes.png
|
|
281
|
+
plotpy/data/icons/shapes/marker.png
|
|
282
|
+
plotpy/data/icons/shapes/oblique_rectangle.png
|
|
283
|
+
plotpy/data/icons/shapes/point_shape.png
|
|
284
|
+
plotpy/data/icons/shapes/polyline.png
|
|
285
|
+
plotpy/data/icons/shapes/rectangle.png
|
|
286
|
+
plotpy/data/icons/shapes/segment.png
|
|
287
|
+
plotpy/data/icons/styles/dash.png
|
|
288
|
+
plotpy/data/icons/styles/dashdot.png
|
|
289
|
+
plotpy/data/icons/styles/dashdotdot.png
|
|
290
|
+
plotpy/data/icons/styles/dot.png
|
|
291
|
+
plotpy/data/icons/styles/solid.png
|
|
120
292
|
plotpy/external/__init__.py
|
|
121
293
|
plotpy/external/sliders/__init__.py
|
|
122
294
|
plotpy/external/sliders/_generic_range_slider.py
|
|
@@ -125,178 +297,6 @@ plotpy/external/sliders/_labeled.py
|
|
|
125
297
|
plotpy/external/sliders/_misc.py
|
|
126
298
|
plotpy/external/sliders/_range_style.py
|
|
127
299
|
plotpy/external/sliders/_sliders.py
|
|
128
|
-
plotpy/images/apply.png
|
|
129
|
-
plotpy/images/arredit.png
|
|
130
|
-
plotpy/images/arrow_down.png
|
|
131
|
-
plotpy/images/arrow_up.png
|
|
132
|
-
plotpy/images/autorefresh.png
|
|
133
|
-
plotpy/images/autoscale.png
|
|
134
|
-
plotpy/images/axes.png
|
|
135
|
-
plotpy/images/busy.png
|
|
136
|
-
plotpy/images/cell_edit.png
|
|
137
|
-
plotpy/images/center.png
|
|
138
|
-
plotpy/images/cmap_edit.png
|
|
139
|
-
plotpy/images/contrast.png
|
|
140
|
-
plotpy/images/copy.png
|
|
141
|
-
plotpy/images/copytoclipboard.png
|
|
142
|
-
plotpy/images/csapplylut.png
|
|
143
|
-
plotpy/images/csautoscale.png
|
|
144
|
-
plotpy/images/csection.png
|
|
145
|
-
plotpy/images/csection_a.png
|
|
146
|
-
plotpy/images/csection_line.png
|
|
147
|
-
plotpy/images/csection_oblique.png
|
|
148
|
-
plotpy/images/csperimage.png
|
|
149
|
-
plotpy/images/curve_downsample.png
|
|
150
|
-
plotpy/images/delete.png
|
|
151
|
-
plotpy/images/edit.png
|
|
152
|
-
plotpy/images/edit_point_selection.png
|
|
153
|
-
plotpy/images/eliminate_outliers.png
|
|
154
|
-
plotpy/images/eraser.png
|
|
155
|
-
plotpy/images/exit.png
|
|
156
|
-
plotpy/images/expander_down.png
|
|
157
|
-
plotpy/images/expander_right.png
|
|
158
|
-
plotpy/images/export.png
|
|
159
|
-
plotpy/images/file.png
|
|
160
|
-
plotpy/images/fileclose.png
|
|
161
|
-
plotpy/images/fileimport.png
|
|
162
|
-
plotpy/images/filenew.png
|
|
163
|
-
plotpy/images/fileopen.png
|
|
164
|
-
plotpy/images/filesave.png
|
|
165
|
-
plotpy/images/filesaveas.png
|
|
166
|
-
plotpy/images/font.png
|
|
167
|
-
plotpy/images/full_range.png
|
|
168
|
-
plotpy/images/funct.png
|
|
169
|
-
plotpy/images/hcursor.png
|
|
170
|
-
plotpy/images/hflip.png
|
|
171
|
-
plotpy/images/imagestats.png
|
|
172
|
-
plotpy/images/item_list.png
|
|
173
|
-
plotpy/images/magnifier.png
|
|
174
|
-
plotpy/images/max.png
|
|
175
|
-
plotpy/images/min.png
|
|
176
|
-
plotpy/images/move.png
|
|
177
|
-
plotpy/images/multipoint_selection.png
|
|
178
|
-
plotpy/images/none.png
|
|
179
|
-
plotpy/images/not_found.png
|
|
180
|
-
plotpy/images/on_curve.png
|
|
181
|
-
plotpy/images/plotpy-banner.svg
|
|
182
|
-
plotpy/images/plotpy-vertical.svg
|
|
183
|
-
plotpy/images/plotpy.svg
|
|
184
|
-
plotpy/images/point_selection.png
|
|
185
|
-
plotpy/images/print.png
|
|
186
|
-
plotpy/images/python.png
|
|
187
|
-
plotpy/images/quickview.png
|
|
188
|
-
plotpy/images/rectangular_select.png
|
|
189
|
-
plotpy/images/refresh.png
|
|
190
|
-
plotpy/images/save_all.png
|
|
191
|
-
plotpy/images/selection.png
|
|
192
|
-
plotpy/images/settings.png
|
|
193
|
-
plotpy/images/shape.png
|
|
194
|
-
plotpy/images/snapshot.png
|
|
195
|
-
plotpy/images/trash.png
|
|
196
|
-
plotpy/images/trimage_lock.png
|
|
197
|
-
plotpy/images/trimage_unlock.png
|
|
198
|
-
plotpy/images/vcursor.png
|
|
199
|
-
plotpy/images/vflip.png
|
|
200
|
-
plotpy/images/xcursor.png
|
|
201
|
-
plotpy/images/xmax.png
|
|
202
|
-
plotpy/images/xmin.png
|
|
203
|
-
plotpy/images/xrange.png
|
|
204
|
-
plotpy/images/curvestyles/dots.png
|
|
205
|
-
plotpy/images/curvestyles/lines.png
|
|
206
|
-
plotpy/images/curvestyles/steps.png
|
|
207
|
-
plotpy/images/curvestyles/sticks.png
|
|
208
|
-
plotpy/images/curvetypes/xfy.png
|
|
209
|
-
plotpy/images/curvetypes/yfx.png
|
|
210
|
-
plotpy/images/editors/edit.png
|
|
211
|
-
plotpy/images/editors/edit_add.png
|
|
212
|
-
plotpy/images/editors/editcopy.png
|
|
213
|
-
plotpy/images/editors/editdelete.png
|
|
214
|
-
plotpy/images/editors/editpaste.png
|
|
215
|
-
plotpy/images/editors/fileimport.png
|
|
216
|
-
plotpy/images/editors/filesave.png
|
|
217
|
-
plotpy/images/editors/imshow.png
|
|
218
|
-
plotpy/images/editors/insert.png
|
|
219
|
-
plotpy/images/editors/plot.png
|
|
220
|
-
plotpy/images/editors/rename.png
|
|
221
|
-
plotpy/images/filetypes/doc.png
|
|
222
|
-
plotpy/images/filetypes/gif.png
|
|
223
|
-
plotpy/images/filetypes/html.png
|
|
224
|
-
plotpy/images/filetypes/jpg.png
|
|
225
|
-
plotpy/images/filetypes/pdf.png
|
|
226
|
-
plotpy/images/filetypes/png.png
|
|
227
|
-
plotpy/images/filetypes/pps.png
|
|
228
|
-
plotpy/images/filetypes/ps.png
|
|
229
|
-
plotpy/images/filetypes/tar.png
|
|
230
|
-
plotpy/images/filetypes/tgz.png
|
|
231
|
-
plotpy/images/filetypes/tif.png
|
|
232
|
-
plotpy/images/filetypes/txt.png
|
|
233
|
-
plotpy/images/filetypes/xls.png
|
|
234
|
-
plotpy/images/filetypes/zip.png
|
|
235
|
-
plotpy/images/items/annotation.png
|
|
236
|
-
plotpy/images/items/curve.png
|
|
237
|
-
plotpy/images/items/errorbar.png
|
|
238
|
-
plotpy/images/items/grid.png
|
|
239
|
-
plotpy/images/items/histogram.png
|
|
240
|
-
plotpy/images/items/histogram2d.png
|
|
241
|
-
plotpy/images/items/image.png
|
|
242
|
-
plotpy/images/items/label.png
|
|
243
|
-
plotpy/images/items/legend.png
|
|
244
|
-
plotpy/images/items/polygonmap.png
|
|
245
|
-
plotpy/images/markers/cross.png
|
|
246
|
-
plotpy/images/markers/diamond.png
|
|
247
|
-
plotpy/images/markers/ellipse.png
|
|
248
|
-
plotpy/images/markers/hexagon.png
|
|
249
|
-
plotpy/images/markers/point.png
|
|
250
|
-
plotpy/images/markers/square.png
|
|
251
|
-
plotpy/images/markers/star.png
|
|
252
|
-
plotpy/images/markers/triangle_d.png
|
|
253
|
-
plotpy/images/markers/triangle_l.png
|
|
254
|
-
plotpy/images/markers/triangle_r.png
|
|
255
|
-
plotpy/images/markers/triangle_u.png
|
|
256
|
-
plotpy/images/markers/xcross.png
|
|
257
|
-
plotpy/images/markerstyles/cross_marker.png
|
|
258
|
-
plotpy/images/markerstyles/horiz_marker.png
|
|
259
|
-
plotpy/images/markerstyles/vert_marker.png
|
|
260
|
-
plotpy/images/mask/mask_circle.png
|
|
261
|
-
plotpy/images/mask/mask_circle_outside.png
|
|
262
|
-
plotpy/images/mask/mask_rectangle.png
|
|
263
|
-
plotpy/images/mask/mask_rectangle_outside.png
|
|
264
|
-
plotpy/images/mask/mask_tool.png
|
|
265
|
-
plotpy/images/patterns/bdiagpattern.png
|
|
266
|
-
plotpy/images/patterns/crosspattern.png
|
|
267
|
-
plotpy/images/patterns/dense1pattern.png
|
|
268
|
-
plotpy/images/patterns/dense2pattern.png
|
|
269
|
-
plotpy/images/patterns/dense3pattern.png
|
|
270
|
-
plotpy/images/patterns/dense4pattern.png
|
|
271
|
-
plotpy/images/patterns/dense5pattern.png
|
|
272
|
-
plotpy/images/patterns/dense6pattern.png
|
|
273
|
-
plotpy/images/patterns/dense7pattern.png
|
|
274
|
-
plotpy/images/patterns/diagcrosspattern.png
|
|
275
|
-
plotpy/images/patterns/fdiagpattern.png
|
|
276
|
-
plotpy/images/patterns/horpattern.png
|
|
277
|
-
plotpy/images/patterns/nobrush.png
|
|
278
|
-
plotpy/images/patterns/solidpattern.png
|
|
279
|
-
plotpy/images/patterns/verpattern.png
|
|
280
|
-
plotpy/images/scales/lin_lin.png
|
|
281
|
-
plotpy/images/scales/lin_log.png
|
|
282
|
-
plotpy/images/scales/log_lin.png
|
|
283
|
-
plotpy/images/scales/log_log.png
|
|
284
|
-
plotpy/images/shapes/circle.png
|
|
285
|
-
plotpy/images/shapes/contour.png
|
|
286
|
-
plotpy/images/shapes/ellipse_shape.png
|
|
287
|
-
plotpy/images/shapes/freeform.png
|
|
288
|
-
plotpy/images/shapes/gtaxes.png
|
|
289
|
-
plotpy/images/shapes/marker.png
|
|
290
|
-
plotpy/images/shapes/oblique_rectangle.png
|
|
291
|
-
plotpy/images/shapes/point_shape.png
|
|
292
|
-
plotpy/images/shapes/polyline.png
|
|
293
|
-
plotpy/images/shapes/rectangle.png
|
|
294
|
-
plotpy/images/shapes/segment.png
|
|
295
|
-
plotpy/images/styles/dash.png
|
|
296
|
-
plotpy/images/styles/dashdot.png
|
|
297
|
-
plotpy/images/styles/dashdotdot.png
|
|
298
|
-
plotpy/images/styles/dot.png
|
|
299
|
-
plotpy/images/styles/solid.png
|
|
300
300
|
plotpy/interfaces/__init__.py
|
|
301
301
|
plotpy/interfaces/items.py
|
|
302
302
|
plotpy/interfaces/panel.py
|
|
@@ -426,22 +426,31 @@ plotpy/tests/tools/test_get_rectangle_with_svg.py
|
|
|
426
426
|
plotpy/tests/tools/test_get_segment.py
|
|
427
427
|
plotpy/tests/tools/test_image_plot_tools.py
|
|
428
428
|
plotpy/tests/unit/__init__.py
|
|
429
|
+
plotpy/tests/unit/test_aspect_ratio_tool.py
|
|
429
430
|
plotpy/tests/unit/test_baseplot.py
|
|
430
431
|
plotpy/tests/unit/test_builder_annotation.py
|
|
431
432
|
plotpy/tests/unit/test_builder_curve.py
|
|
432
433
|
plotpy/tests/unit/test_builder_image.py
|
|
433
434
|
plotpy/tests/unit/test_builder_shape.py
|
|
434
435
|
plotpy/tests/unit/test_contour.py
|
|
436
|
+
plotpy/tests/unit/test_display_coords_tool.py
|
|
435
437
|
plotpy/tests/unit/test_fontparam.py
|
|
436
438
|
plotpy/tests/unit/test_geometry.py
|
|
437
439
|
plotpy/tests/unit/test_highprecisionxy.py
|
|
438
440
|
plotpy/tests/unit/test_io.py
|
|
439
441
|
plotpy/tests/unit/test_line.py
|
|
442
|
+
plotpy/tests/unit/test_line_cross_section_tool.py
|
|
443
|
+
plotpy/tests/unit/test_multiline_tools.py
|
|
444
|
+
plotpy/tests/unit/test_oblique_cross_section_tool.py
|
|
440
445
|
plotpy/tests/unit/test_plot_curve.py
|
|
441
446
|
plotpy/tests/unit/test_plot_image.py
|
|
447
|
+
plotpy/tests/unit/test_point_tools.py
|
|
448
|
+
plotpy/tests/unit/test_rect_zoom.py
|
|
442
449
|
plotpy/tests/unit/test_seg_dist.py
|
|
450
|
+
plotpy/tests/unit/test_shape_tools.py
|
|
443
451
|
plotpy/tests/unit/test_styles.py
|
|
444
452
|
plotpy/tests/unit/test_tools_export.py
|
|
453
|
+
plotpy/tests/unit/utils.py
|
|
445
454
|
plotpy/tests/widgets/__init__.py
|
|
446
455
|
plotpy/tests/widgets/test_dotarraydemo.py
|
|
447
456
|
plotpy/tests/widgets/test_filtertest1.py
|
|
@@ -24,6 +24,7 @@ Signals emitted by :py:class:`.BasePlot` objects:
|
|
|
24
24
|
- :py:attr:`.BasePlot.SIG_ANNOTATION_CHANGED`
|
|
25
25
|
- :py:attr:`.BasePlot.SIG_RANGE_CHANGED`
|
|
26
26
|
- :py:attr:`.BasePlot.SIG_ITEMS_CHANGED`
|
|
27
|
+
- :py:attr:`.BasePlot.SIG_ITEM_PARAMETERS_CHANGED`
|
|
27
28
|
- :py:attr:`.BasePlot.SIG_ACTIVE_ITEM_CHANGED`
|
|
28
29
|
- :py:attr:`.BasePlot.SIG_ITEM_REMOVED`
|
|
29
30
|
- :py:attr:`.BasePlot.SIG_ITEM_SELECTION_CHANGED`
|
|
@@ -9,12 +9,12 @@ The :mod:`plotpy` package requires the following Python modules:
|
|
|
9
9
|
- Summary
|
|
10
10
|
* - Python
|
|
11
11
|
- >=3.8, <4
|
|
12
|
-
-
|
|
12
|
+
-
|
|
13
13
|
* - guidata
|
|
14
14
|
- >=3.1
|
|
15
15
|
- Automatic GUI generation for easy dataset editing and display
|
|
16
16
|
* - PythonQwt
|
|
17
|
-
- >=0.
|
|
17
|
+
- >=0.12.1
|
|
18
18
|
- Qt plotting widgets for Python
|
|
19
19
|
* - NumPy
|
|
20
20
|
- >=1.17
|
|
@@ -23,10 +23,10 @@ The :mod:`plotpy` package requires the following Python modules:
|
|
|
23
23
|
- >=1.3
|
|
24
24
|
- Fundamental algorithms for scientific computing in Python
|
|
25
25
|
* - Pillow
|
|
26
|
-
-
|
|
26
|
+
-
|
|
27
27
|
- Python Imaging Library (Fork)
|
|
28
28
|
* - tifffile
|
|
29
|
-
-
|
|
29
|
+
-
|
|
30
30
|
- Read and write TIFF files
|
|
31
31
|
* - PyQt5
|
|
32
32
|
- >=5.11
|
|
@@ -42,19 +42,19 @@ Optional modules for development:
|
|
|
42
42
|
- Version
|
|
43
43
|
- Summary
|
|
44
44
|
* - black
|
|
45
|
-
-
|
|
45
|
+
-
|
|
46
46
|
- The uncompromising code formatter.
|
|
47
47
|
* - isort
|
|
48
|
-
-
|
|
48
|
+
-
|
|
49
49
|
- A Python utility / library to sort Python imports.
|
|
50
50
|
* - pylint
|
|
51
|
-
-
|
|
51
|
+
-
|
|
52
52
|
- python code static checker
|
|
53
53
|
* - Coverage
|
|
54
|
-
-
|
|
54
|
+
-
|
|
55
55
|
- Code coverage measurement for Python
|
|
56
56
|
* - Cython
|
|
57
|
-
-
|
|
57
|
+
-
|
|
58
58
|
- The Cython compiler for writing C extensions in the Python language.
|
|
59
59
|
|
|
60
60
|
Optional modules for building the documentation:
|
|
@@ -67,22 +67,22 @@ Optional modules for building the documentation:
|
|
|
67
67
|
- Version
|
|
68
68
|
- Summary
|
|
69
69
|
* - PyQt5
|
|
70
|
-
-
|
|
70
|
+
-
|
|
71
71
|
- Python bindings for the Qt cross platform application toolkit
|
|
72
72
|
* - sphinx
|
|
73
|
-
-
|
|
73
|
+
-
|
|
74
74
|
- Python documentation generator
|
|
75
75
|
* - myst_parser
|
|
76
|
-
-
|
|
76
|
+
-
|
|
77
77
|
- An extended [CommonMark](https://spec.commonmark.org/) compliant parser,
|
|
78
78
|
* - sphinx-copybutton
|
|
79
|
-
-
|
|
79
|
+
-
|
|
80
80
|
- Add a copy button to each of your code cells.
|
|
81
81
|
* - sphinx_qt_documentation
|
|
82
|
-
-
|
|
82
|
+
-
|
|
83
83
|
- Plugin for proper resolve intersphinx references for Qt elements
|
|
84
84
|
* - python-docs-theme
|
|
85
|
-
-
|
|
85
|
+
-
|
|
86
86
|
- The Sphinx theme for the CPython docs and related projects
|
|
87
87
|
|
|
88
88
|
Optional modules for running test suite:
|
|
@@ -95,11 +95,11 @@ Optional modules for running test suite:
|
|
|
95
95
|
- Version
|
|
96
96
|
- Summary
|
|
97
97
|
* - pytest
|
|
98
|
-
-
|
|
98
|
+
-
|
|
99
99
|
- pytest: simple powerful testing with Python
|
|
100
100
|
* - pytest-cov
|
|
101
|
-
-
|
|
101
|
+
-
|
|
102
102
|
- Pytest plugin for measuring coverage.
|
|
103
103
|
* - pytest-xvfb
|
|
104
|
-
-
|
|
104
|
+
-
|
|
105
105
|
- A pytest plugin to run Xvfb (or Xephyr/Xvnc) for tests.
|
|
@@ -20,12 +20,12 @@ External resources:
|
|
|
20
20
|
.. _GitHub: https://github.com/PierreRaybaut/plotpy
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
|
-
__version__ = "2.
|
|
23
|
+
__version__ = "2.2.0"
|
|
24
24
|
__VERSION__ = tuple([int(number) for number in __version__.split(".")])
|
|
25
25
|
|
|
26
26
|
# --- Important note: DATAPATH and LOCALEPATH are used by guidata.configtools
|
|
27
27
|
# --- to retrieve data and translation files paths
|
|
28
28
|
#
|
|
29
29
|
# Dear (Debian, RPM, ...) package makers, please feel free to customize the
|
|
30
|
-
# following path to module's data (
|
|
30
|
+
# following path to module's data (e.g. icons) and translations:
|
|
31
31
|
DATAPATH = LOCALEPATH = ""
|