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.
- {PlotPy-2.0.0 → PlotPy-2.0.2}/PKG-INFO +5 -3
- {PlotPy-2.0.0 → PlotPy-2.0.2}/PlotPy.egg-info/PKG-INFO +5 -3
- {PlotPy-2.0.0 → PlotPy-2.0.2}/PlotPy.egg-info/SOURCES.txt +2 -1
- {PlotPy-2.0.0 → PlotPy-2.0.2}/PlotPy.egg-info/requires.txt +1 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/README.md +3 -2
- PlotPy-2.0.2/doc/changelog.rst +2 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/conf.py +1 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/contribute.rst +8 -2
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/plot/overview.rst +3 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/plot/reference.rst +2 -0
- PlotPy-2.0.2/doc/images/panorama.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/panorama.svg +130 -130
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/index.rst +7 -2
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/intro/index.rst +1 -0
- PlotPy-2.0.2/doc/intro/motivation.rst +51 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/intro/overview.rst +29 -5
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/requirements.rst +3 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/__init__.py +1 -1
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/shape.py +0 -1
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/interfaces/__init__.py +2 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/interfaces/items.py +9 -5
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/io.py +4 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/__init__.py +2 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/annotation.py +9 -1
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/curve/__init__.py +2 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/curve/base.py +0 -1
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/histogram.py +29 -6
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/__init__.py +2 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/base.py +10 -4
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/misc.py +11 -5
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/__init__.py +2 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/base.py +0 -1
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/point.py +0 -1
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/range.py +51 -2
- PlotPy-2.0.2/plotpy/locale/fr/LC_MESSAGES/plotpy.mo +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/mathutils/geometry.py +260 -260
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/__init__.py +2 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/contrastadjustment.py +31 -19
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/csection/__init__.py +2 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/csection/csitem.py +0 -8
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/plot/__init__.py +2 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/plot/base.py +12 -5
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/pyplot.py +2 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/__init__.py +1 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/histogram.py +43 -23
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_manager.py +21 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_mandelbrot.py +19 -13
- PlotPy-2.0.2/plotpy/tests/widgets/test_resize_dialog.py +71 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_simple_window.py +60 -23
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/__init__.py +1 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/annotation.py +0 -8
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/curve.py +8 -2
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/image.py +1 -1
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/misc.py +1 -1
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/plot.py +1 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/resizedialog.py +3 -1
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/selectdialog.py +7 -1
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy-tests.desktop +10 -10
- {PlotPy-2.0.0 → PlotPy-2.0.2}/pyproject.toml +1 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/src/contour2d.c +96 -96
- {PlotPy-2.0.0 → PlotPy-2.0.2}/src/histogram2d.c +97 -97
- {PlotPy-2.0.0 → PlotPy-2.0.2}/src/mandelbrot.c +97 -97
- PlotPy-2.0.0/doc/images/panorama.png +0 -0
- PlotPy-2.0.0/plotpy/locale/fr/LC_MESSAGES/plotpy.mo +0 -0
- PlotPy-2.0.0/plotpy/tests/widgets/test_qtdesigner_ui.py +0 -19
- PlotPy-2.0.0/plotpy/tests/widgets/test_resize_dialog.py +0 -65
- {PlotPy-2.0.0 → PlotPy-2.0.2}/LICENSE +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/MANIFEST.in +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/PlotPy.egg-info/dependency_links.txt +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/PlotPy.egg-info/entry_points.txt +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/PlotPy.egg-info/top_level.txt +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/_static/favicon.ico +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/build.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/guiqwt_to_plotpy.csv +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/guiqwt_to_plotpy.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/index.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/platforms.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/v1_to_v2.csv +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/dev/v1_to_v2.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/fit.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/fliprotate.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/imagefile.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/index.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/io.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/items/builder.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/items/examples.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/items/index.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/items/overview.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/items/reference.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/mathutils/colormap.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/mathutils/geometry.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/mathutils/index.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/mathutils/scaler.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/panels/index.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/panels/overview.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/panels/reference.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/plot/examples.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/plot/index.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/pyplot.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/resizedialog.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/rotatecrop.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/selectdialog.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/signals.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/styles/index.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/styles/overview.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/styles/reference.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/tools/examples.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/tools/index.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/tools/overview.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/features/tools/reference.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/my_plot_manager.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/my_plot_manager.svg +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/plot_widgets.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/plot_widgets.svg +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/plotpy-banner.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/plotpy-vertical.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/__init__.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/computations.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/contrast.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/cross_section.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/cross_section2.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/dotarraydemo.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/filtertest1.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/filtertest2.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/fit.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/get_point.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/hist2d.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/image_plot_tools.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/imagefilter.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/imagesuperp.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/imagexy.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/manager.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/mandelbrot.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/pcolor.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/plot.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/simple_dialog.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/simple_window.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/images/screenshots/transform.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/intro/examples.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/intro/installation.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/intro/licenses.rst +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/doc/update_requirements.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/__init__.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/annotation.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/curvemarker.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/image.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/label.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/builder/plot.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/config.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/constants.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/coords.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/events.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/apply.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/arredit.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/arrow_down.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/arrow_up.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/autorefresh.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/autoscale.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/axes.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/busy.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/cell_edit.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/center.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/contrast.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/copy.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/copytoclipboard.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/csapplylut.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/csautoscale.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/csection.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/csection_a.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/csection_oblique.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/csperimage.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/curvestyles/dots.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/curvestyles/lines.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/curvestyles/steps.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/curvestyles/sticks.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/curvetypes/xfy.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/curvetypes/yfx.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/delete.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/edit.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/edit.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/edit_add.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/editcopy.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/editdelete.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/editpaste.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/fileimport.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/filesave.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/imshow.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/insert.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/plot.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/editors/rename.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/eliminate_outliers.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/eraser.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/exit.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/expander_down.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/expander_right.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/export.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/file.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/fileclose.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/fileimport.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filenew.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/fileopen.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filesave.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filesaveas.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/doc.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/gif.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/html.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/jpg.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/pdf.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/png.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/pps.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/ps.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/tar.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/tgz.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/tif.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/txt.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/xls.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/filetypes/zip.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/font.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/full_range.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/funct.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/hcursor.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/hflip.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/imagestats.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/item_list.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/annotation.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/curve.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/errorbar.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/grid.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/histogram.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/histogram2d.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/image.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/label.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/items/legend.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/magnifier.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/cross.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/diamond.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/ellipse.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/hexagon.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/point.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/square.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/star.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/triangle_d.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/triangle_l.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/triangle_r.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/triangle_u.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markers/xcross.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markerstyles/cross_marker.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markerstyles/horiz_marker.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/markerstyles/vert_marker.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/mask/mask_circle.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/mask/mask_circle_outside.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/mask/mask_rectangle.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/mask/mask_rectangle_outside.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/mask/mask_tool.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/max.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/min.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/move.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/none.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/not_found.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/on_curve.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/bdiagpattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/crosspattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense1pattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense2pattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense3pattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense4pattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense5pattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense6pattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/dense7pattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/diagcrosspattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/fdiagpattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/horpattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/nobrush.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/solidpattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/patterns/verpattern.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/plotpy-banner.svg +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/plotpy-vertical.svg +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/plotpy.svg +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/point_selection.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/print.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/python.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/quickview.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/rectangular_select.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/refresh.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/save_all.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/scales/lin_lin.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/scales/lin_log.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/scales/log_lin.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/scales/log_log.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/selection.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/settings.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shape.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/circle.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/contour.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/ellipse_shape.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/freeform.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/gtaxes.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/marker.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/oblique_rectangle.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/point_shape.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/polyline.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/rectangle.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/shapes/segment.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/snapshot.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/styles/dash.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/styles/dashdot.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/styles/dashdotdot.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/styles/dot.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/styles/solid.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/trash.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/trimage_lock.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/trimage_unlock.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/vcursor.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/vflip.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/xcursor.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/xmax.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/xmin.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/images/xrange.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/interfaces/panel.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/interfaces/plotmanager.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/contour.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/curve/errorbar.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/grid.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/filter.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/image_items.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/masked.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/image/transform.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/label.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/polygon.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/axis.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/ellipse.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/marker.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/polygon.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/rectangle.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/segment.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/items/shape/svg.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/lutrange.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/mathutils/__init__.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/mathutils/_cm.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/mathutils/arrayfuncs.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/mathutils/colormap.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/mathutils/scaler.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/base.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/csection/csplot.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/csection/cswidget.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/panels/itemlist.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/plot/interactive.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/plot/manager.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/plot/plotwidget.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/axes.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/base.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/curve.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/errorbar.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/image.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/label.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/styles/shape.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/__init__.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/benchmarks/__init__.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/benchmarks/test_benchmarks.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/benchmarks/test_bigimages.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/benchmarks/test_loadtest.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/conftest.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/data/brain.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/data/brain_cylinder.png +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/data/mr-brain.dcm +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/data/svg_target.svg +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/data/svg_tool.svg +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/data.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/__init__.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_auto_curve_image.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_autoscale_shapes.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_builder.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_computations.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_contrast.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_cursors.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_dicom_image.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_fit.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_image_coords.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_imagefilter.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_imagesuperp.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_loadsaveitems_hdf5.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_loadsaveitems_json.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_loadsaveitems_pickle.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_no_auto_tools.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_plot_log.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_plot_types.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_plot_yreverse.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_pyplot.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/features/test_resize.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/__init__.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_annotations.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_curves.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_hist2d.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_histogram.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_image.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_image_contour.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_image_masked.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_image_masked_xy.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_image_rgb.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_image_xy.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_pcolor.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_polygons.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_svgshapes.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/items/test_transform.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/__init__.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_actiontool.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_cross_section.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_cross_section_oblique.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_customize_shape_tool.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_get_point.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_get_rectangle.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_get_rectangle_with_svg.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_get_segment.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/tools/test_image_plot_tools.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/__init__.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_baseplot.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_builder_annotation.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_builder_curve.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_builder_image.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_builder_shape.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_contour.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_fontparam.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_geometry.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_highprecisionxy.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_io.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_line.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_plot_curve.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_plot_image.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_seg_dist.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_styles.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/unit/test_tools_export.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/vistools.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/__init__.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_dotarraydemo.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_filtertest1.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_filtertest2.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_fliprotate.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_plot_timecurve.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_qtdesigner.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_qtdesigner.ui +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_rotatecrop.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_simple_dialog.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tests/widgets/test_syncplot.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/axes.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/base.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/cross_section.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/cursor.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/item.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/label.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/selection.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/tools/shape.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/__init__.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/about.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/basetransform.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/fit.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/fliprotate.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/imagefile.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/qtdesigner.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/plotpy/widgets/rotatecrop.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/qtdesigner/plotplugin.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/setup.cfg +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/setup.py +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/src/arrays.hpp +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/src/contour2d.pyx +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/src/debug.hpp +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/src/histogram2d.pyx +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/src/mandelbrot.pyx +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/src/pcolor.cpp +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/src/points.hpp +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/src/scaler.cpp +0 -0
- {PlotPy-2.0.0 → PlotPy-2.0.2}/src/scaler.hpp +0 -0
- {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.
|
|
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)
|
|
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.
|
|
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)
|
|
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
|
|
@@ -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)
|
|
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
|
|
|
@@ -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
|
|
97
|
-
|
|
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`
|
|
Binary file
|