summaryrefslogtreecommitdiff
path: root/silx.egg-info
diff options
context:
space:
mode:
Diffstat (limited to 'silx.egg-info')
-rw-r--r--silx.egg-info/PKG-INFO180
-rw-r--r--silx.egg-info/SOURCES.txt1034
-rw-r--r--silx.egg-info/dependency_links.txt1
-rw-r--r--silx.egg-info/entry_points.txt3
-rw-r--r--silx.egg-info/not-zip-safe1
-rw-r--r--silx.egg-info/requires.txt2
-rw-r--r--silx.egg-info/top_level.txt1
7 files changed, 1222 insertions, 0 deletions
diff --git a/silx.egg-info/PKG-INFO b/silx.egg-info/PKG-INFO
new file mode 100644
index 0000000..ed985dc
--- /dev/null
+++ b/silx.egg-info/PKG-INFO
@@ -0,0 +1,180 @@
+Metadata-Version: 1.1
+Name: silx
+Version: 0.6.1
+Summary: Software library for X-Ray data analysis
+Home-page: http://www.silx.org/
+Author: data analysis unit
+Author-email: silx@esrf.fr
+License: UNKNOWN
+Description:
+ silx toolkit
+ ============
+
+ The silx project aims at providing a collection of Python packages to support the
+ development of data assessment, reduction and analysis applications at synchrotron
+ radiation facilities.
+ It aims at providing reading/writing different file formats, data reduction routines
+ and a set of Qt widgets to browse and visualize data.
+
+ The current version provides:
+
+ * reading `HDF5 <https://www.hdfgroup.org/HDF5/>`_ file format (with support of
+ `SPEC <https://certif.com/spec.html>`_ file format and
+ `FabIO <http://www.silx.org/doc/fabio/dev/getting_started.html#list-of-file-formats-that-fabio-can-read-and-write>`_
+ images)
+ * histogramming
+ * fitting
+ * 1D and 2D visualization widgets using multiple backends (matplotlib or OpenGL)
+ * an OpenGL-based widget to display 3D scalar field with isosurface and cutting plane
+ * an image plot widget with a set of associated tools
+ * a unified browser for HDF5, SPEC and image file formats supporting inspection and
+ visualization of n-dimensional datasets.
+ * a unified viewer (*silx view filename*) for HDF5, SPEC and image file formats
+ * a unified converter to HDF5 format (*silx convert filename*)
+ * median filters on images (C and OpenCL implementations)
+ * image alignement (sift - OpenCL implementation)
+ * filtered backprojection and forward projection for tomography
+
+ Installation
+ ------------
+
+ To install silx, run::
+
+ pip install silx
+
+ Or with Anaconda on Linux and MacOS::
+
+ conda install silx -c conda-forge
+
+ To install silx locally, run::
+
+ pip install silx --user
+
+ Unofficial packages for different distributions are available :
+
+ - Unofficial Debian8 packages are available at http://www.silx.org/pub/debian/
+ - CentOS 7 rpm packages are provided by Max IV at the following url: http://pubrepo.maxiv.lu.se/rpm/el7/x86_64/
+ - Fedora 23 rpm packages are provided by Max IV at http://pubrepo.maxiv.lu.se/rpm/fc23/x86_64/
+ - Arch Linux (AUR) packages are also available: https://aur.archlinux.org/packages/python-silx
+
+ Beside this, we provide a certain number of wheels (pre-compiled binary packages) to be installed
+ onto a pre-existing Python installation:
+
+ - On Windows, binary wheels are available for Python 2.7, 3.5 and 3.6.
+ - On MacOS, binary wheels are available for Python 2.7, 3.5 and 3.6.
+ - On Linux, manylinux1 binary wheels are available for Python 2.7, 3.4, 3.5 and 3.6.
+
+ Those builds are made from "up-date" systems at the time of the release, i.e. they use
+ the latest stable version of numpy (and cython).
+ Hence your system should use a fairly recent version of numpy to be compatible with silx.
+ This can be achieved simply by::
+
+ pip install numpy --upgrade
+
+
+ The latest development version can be obtained from the git repository::
+
+ git clone https://github.com/silx-kit/silx.git
+ cd silx
+ pip install . [--user]
+
+ Dependencies
+ ------------
+
+ * `Python <https://www.python.org/>`_ 2.7, 3.4 or above.
+ * `numpy <http://www.numpy.org>`_
+
+ The GUI widgets of the silx package depend on the following extra packages:
+
+ * A Qt binding: `PyQt5, PyQt4 <https://riverbankcomputing.com/software/pyqt/intro>`_ (using API version 2) or `PySide <https://pypi.python.org/pypi/PySide/>`_
+ * `matplotlib <http://matplotlib.org/>`_ for the silx.gui.plot package
+ * `PyOpenGL <http://pyopengl.sourceforge.net/>`_ for the silx.gui.plot3d package
+
+ Most modules and functions dealing with `HDF5 <https://www.hdfgroup.org/HDF5/>`_ input/output depend on:
+
+ * `h5py <http://www.h5py.org/>`_
+
+ Parallel algorithms depend on:
+
+ * `PyOpenCL <https://documen.tician.de/pyopencl/>`_
+
+ The console widgets depend on:
+
+ * `ipython <https://ipython.org/>`_
+ * `qtconsole <https://pypi.python.org/pypi/qtconsole>`_
+
+
+ Supported platforms: Linux, Windows, Mac OS X.
+
+ Documentation
+ -------------
+
+ Documentation of latest release is available at http://www.silx.org/doc/silx/latest/
+
+ Documentation of previous releases and nightly build is available at http://www.silx.org/doc/silx/
+
+ To build the documentation from the source (requires `Sphinx <http://www.sphinx-doc.org>`_), run::
+
+ python setup.py build build_doc
+
+ Testing
+ -------
+
+ - Travis CI status: |Travis Status|
+ - Appveyor CI status: |Appveyor Status|
+
+ To run the tests from the python interpreter, run:
+
+ >>> import silx.test
+ >>> silx.test.run_tests()
+
+ To run the tests, from the source directory, run::
+
+ python run_tests.py
+
+ Examples
+ --------
+
+ Some examples of sample code using silx are provided with the
+ `silx documentation <http://www.silx.org/doc/silx/dev/sample_code/index.html>`_.
+
+
+ License
+ -------
+
+ The source code of silx is licensed under the MIT license.
+ See the `LICENSE <https://github.com/silx-kit/silx/blob/master/LICENSE>`_ and `copyright <https://github.com/silx-kit/silx/blob/master/copyright>`_ files for details.
+
+ Citation
+ --------
+
+ silx releases can be cited by their DOI on Zenodo: |zenodo DOI|
+
+ .. |Travis Status| image:: https://travis-ci.org/silx-kit/silx.svg?branch=master
+ :target: https://travis-ci.org/silx-kit/silx
+ .. |Appveyor Status| image:: https://ci.appveyor.com/api/projects/status/qgox9ei0wxwfagrb/branch/master?svg=true
+ :target: https://ci.appveyor.com/project/ESRF/silx
+ .. |zenodo DOI| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.591709.svg
+ :target: https://doi.org/10.5281/zenodo.591709
+
+Platform: UNKNOWN
+Classifier: Development Status :: 4 - Beta
+Classifier: Environment :: Console
+Classifier: Environment :: MacOS X
+Classifier: Environment :: Win32 (MS Windows)
+Classifier: Environment :: X11 Applications :: Qt
+Classifier: Intended Audience :: Education
+Classifier: Intended Audience :: Science/Research
+Classifier: License :: OSI Approved :: MIT License
+Classifier: Natural Language :: English
+Classifier: Operating System :: MacOS
+Classifier: Operating System :: Microsoft :: Windows
+Classifier: Operating System :: POSIX
+Classifier: Programming Language :: Cython
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: Implementation :: CPython
+Classifier: Topic :: Scientific/Engineering :: Physics
+Classifier: Topic :: Software Development :: Libraries :: Python Modules
diff --git a/silx.egg-info/SOURCES.txt b/silx.egg-info/SOURCES.txt
new file mode 100644
index 0000000..5de21ae
--- /dev/null
+++ b/silx.egg-info/SOURCES.txt
@@ -0,0 +1,1034 @@
+CHANGELOG.rst
+LICENSE
+MANIFEST.in
+README.rst
+build-deb.sh
+copyright
+requirements-dev.txt
+requirements.txt
+run_tests.py
+setup.py
+stdeb.cfg
+version.py
+doc/source/changelog.rst
+doc/source/conf.py
+doc/source/index.rst
+doc/source/install.rst
+doc/source/license.rst
+doc/source/overview.rst
+doc/source/tutorials.rst
+doc/source/virtualenv.rst
+doc/source/Tutorials/array_widget.rst
+doc/source/Tutorials/fit.rst
+doc/source/Tutorials/fitconfig.rst
+doc/source/Tutorials/io.rst
+doc/source/Tutorials/specfile_to_hdf5.rst
+doc/source/Tutorials/Sift/sift.rst
+doc/source/Tutorials/img/arraywidget3D_0.png
+doc/source/Tutorials/img/arraywidget3D_1.png
+doc/source/Tutorials/img/arraywidget5D_0.png
+doc/source/Tutorials/img/arraywidget5D_1.png
+doc/source/Tutorials/img/custom_config_scale0.5.png
+doc/source/Tutorials/img/custom_config_scale1.0.png
+doc/source/Tutorials/img/custom_config_scale2.1.png
+doc/source/Tutorials/img/fitwidget1.png
+doc/source/Tutorials/img/fitwidget2.png
+doc/source/Tutorials/img/fitwidget3.png
+doc/source/Tutorials/img/fitwidget4.png
+doc/source/Tutorials/img/fitwidget5.png
+doc/source/Tutorials/img/silx_view_edf.png
+doc/source/Tutorials/img/stripbg_plot1.png
+doc/source/Tutorials/img/stripbg_plot2.png
+doc/source/description/index.rst
+doc/source/description/sift.rst
+doc/source/description/img/sift_bench_cpu0.png
+doc/source/description/img/sift_bench_cpu_kp.png
+doc/source/description/img/sift_bench_cpu_res.png
+doc/source/description/img/sift_bench_gpu0.png
+doc/source/description/img/sift_bench_gpu_kp.png
+doc/source/description/img/sift_bench_gpu_res.png
+doc/source/description/img/sift_dog1.png
+doc/source/description/img/sift_frame_ROI.png
+doc/source/description/img/sift_match1.png
+doc/source/description/img/sift_match2.png
+doc/source/description/img/sift_orientation.png
+doc/source/ext/sphinxext-archive.py
+doc/source/img/silx.ico
+doc/source/img/silx_large.png
+doc/source/img/silx_small.png
+doc/source/modules/index.rst
+doc/source/modules/resources.rst
+doc/source/modules/gui/console.rst
+doc/source/modules/gui/designer.rst
+doc/source/modules/gui/gallery.rst
+doc/source/modules/gui/icons.rst
+doc/source/modules/gui/index.rst
+doc/source/modules/gui/qt.rst
+doc/source/modules/gui/update_icons_rst.py
+doc/source/modules/gui/data/arraytable.rst
+doc/source/modules/gui/data/dataviewer.rst
+doc/source/modules/gui/data/dataviewerframe.rst
+doc/source/modules/gui/data/index.rst
+doc/source/modules/gui/data/numpyaxesselector.rst
+doc/source/modules/gui/data/textformatter.rst
+doc/source/modules/gui/data/img/ArrayTableWidget.png
+doc/source/modules/gui/data/img/DataViewer.png
+doc/source/modules/gui/data/img/DataViewerFrame.png
+doc/source/modules/gui/data/img/NumpyAxesSelector.png
+doc/source/modules/gui/fit/backgroundwidget.rst
+doc/source/modules/gui/fit/fitwidget.rst
+doc/source/modules/gui/fit/index.rst
+doc/source/modules/gui/fit/img/BackgroundDialog.png
+doc/source/modules/gui/fit/img/FitWidget.png
+doc/source/modules/gui/hdf5/examples_hdf5widget.rst
+doc/source/modules/gui/hdf5/getting_started.rst
+doc/source/modules/gui/hdf5/h5node.rst
+doc/source/modules/gui/hdf5/hdf5contextmenuevent.rst
+doc/source/modules/gui/hdf5/hdf5treemodel.rst
+doc/source/modules/gui/hdf5/hdf5treeview.rst
+doc/source/modules/gui/hdf5/index.rst
+doc/source/modules/gui/hdf5/nexussortfilterproxymodel.rst
+doc/source/modules/gui/hdf5/img/Hdf5Example.png
+doc/source/modules/gui/hdf5/img/Hdf5TreeView.png
+doc/source/modules/gui/img/IPythonDockWidget.png
+doc/source/modules/gui/img/IPythonWidget.png
+doc/source/modules/gui/plot/colormap.rst
+doc/source/modules/gui/plot/compleximageview.rst
+doc/source/modules/gui/plot/dev.rst
+doc/source/modules/gui/plot/getting_started.rst
+doc/source/modules/gui/plot/imageview.rst
+doc/source/modules/gui/plot/index.rst
+doc/source/modules/gui/plot/items.rst
+doc/source/modules/gui/plot/plottools.rst
+doc/source/modules/gui/plot/plotwidget.rst
+doc/source/modules/gui/plot/plotwindow.rst
+doc/source/modules/gui/plot/printpreviewtoolbutton.rst
+doc/source/modules/gui/plot/profile.rst
+doc/source/modules/gui/plot/roi.rst
+doc/source/modules/gui/plot/stackview.rst
+doc/source/modules/gui/plot/actions/control.rst
+doc/source/modules/gui/plot/actions/examples.rst
+doc/source/modules/gui/plot/actions/fit.rst
+doc/source/modules/gui/plot/actions/histogram.rst
+doc/source/modules/gui/plot/actions/index.rst
+doc/source/modules/gui/plot/actions/io.rst
+doc/source/modules/gui/plot/actions/medfilt.rst
+doc/source/modules/gui/plot/actions/img/fftAction0.png
+doc/source/modules/gui/plot/actions/img/fftAction1.png
+doc/source/modules/gui/plot/actions/img/shiftAction0.png
+doc/source/modules/gui/plot/actions/img/shiftAction3.png
+doc/source/modules/gui/plot/img/ComplexImageView.png
+doc/source/modules/gui/plot/img/ImageView.png
+doc/source/modules/gui/plot/img/LimitsToolBar.png
+doc/source/modules/gui/plot/img/Plot1D.png
+doc/source/modules/gui/plot/img/Plot2D.png
+doc/source/modules/gui/plot/img/PlotWidget.png
+doc/source/modules/gui/plot/img/PlotWindow.png
+doc/source/modules/gui/plot/img/PositionInfo.png
+doc/source/modules/gui/plot/img/StackView.png
+doc/source/modules/gui/plot/img/StackViewMainWindow.png
+doc/source/modules/gui/plot/img/colorScale.png
+doc/source/modules/gui/plot/img/colorScaleBar.png
+doc/source/modules/gui/plot/img/linearColorbar.png
+doc/source/modules/gui/plot/img/logColorbar.png
+doc/source/modules/gui/plot/img/netCounts.png
+doc/source/modules/gui/plot/img/plot_and_backend.png
+doc/source/modules/gui/plot/img/printPreviewMultiPlot.png
+doc/source/modules/gui/plot/img/rawCounts.png
+doc/source/modules/gui/plot/img/roiwidget.png
+doc/source/modules/gui/plot/img/tickbar.png
+doc/source/modules/gui/plot3d/actions.rst
+doc/source/modules/gui/plot3d/dev.rst
+doc/source/modules/gui/plot3d/glutils.rst
+doc/source/modules/gui/plot3d/index.rst
+doc/source/modules/gui/plot3d/plot3dwidget.rst
+doc/source/modules/gui/plot3d/plot3dwindow.rst
+doc/source/modules/gui/plot3d/scalarfieldview.rst
+doc/source/modules/gui/plot3d/scene.rst
+doc/source/modules/gui/plot3d/sfviewparamtree.rst
+doc/source/modules/gui/plot3d/tools.rst
+doc/source/modules/gui/plot3d/utils.rst
+doc/source/modules/gui/plot3d/viewer3dvolume_example.rst
+doc/source/modules/gui/plot3d/img/Plot3DWidget.png
+doc/source/modules/gui/plot3d/img/Plot3DWindow.png
+doc/source/modules/gui/plot3d/img/SFViewParamTree.png
+doc/source/modules/gui/plot3d/img/ScalarFieldView.png
+doc/source/modules/gui/widgets/framebrowser.rst
+doc/source/modules/gui/widgets/index.rst
+doc/source/modules/gui/widgets/periodictable.rst
+doc/source/modules/gui/widgets/printpreview.rst
+doc/source/modules/gui/widgets/tablewidget.rst
+doc/source/modules/gui/widgets/threadpoolpushbutton.rst
+doc/source/modules/gui/widgets/waitingpushbutton.rst
+doc/source/modules/gui/widgets/img/FrameBrowser.png
+doc/source/modules/gui/widgets/img/HorizontalSliderWithBrowser.png
+doc/source/modules/gui/widgets/img/PeriodicCombo.png
+doc/source/modules/gui/widgets/img/PeriodicList.png
+doc/source/modules/gui/widgets/img/PeriodicTable.png
+doc/source/modules/gui/widgets/img/TableWidget.png
+doc/source/modules/gui/widgets/img/ThreadPoolPushButton.png
+doc/source/modules/gui/widgets/img/WaitingPushButton.png
+doc/source/modules/image/backprojection.rst
+doc/source/modules/image/bilinear.rst
+doc/source/modules/image/index.rst
+doc/source/modules/image/medianfilter.rst
+doc/source/modules/image/projection.rst
+doc/source/modules/image/reconstruction.rst
+doc/source/modules/image/shapes.rst
+doc/source/modules/image/sift.rst
+doc/source/modules/io/configdict.rst
+doc/source/modules/io/convert.rst
+doc/source/modules/io/dictdump.rst
+doc/source/modules/io/index.rst
+doc/source/modules/io/nxdata.rst
+doc/source/modules/io/octaveh5.rst
+doc/source/modules/io/specfile.rst
+doc/source/modules/io/specfilewrapper.rst
+doc/source/modules/io/spech5.rst
+doc/source/modules/io/utils.rst
+doc/source/modules/math/combo.rst
+doc/source/modules/math/histogram.rst
+doc/source/modules/math/index.rst
+doc/source/modules/math/medianfilter.rst
+doc/source/modules/math/fit/bgtheories.rst
+doc/source/modules/math/fit/filters.rst
+doc/source/modules/math/fit/fitmanager.rst
+doc/source/modules/math/fit/fittheories.rst
+doc/source/modules/math/fit/fittheory.rst
+doc/source/modules/math/fit/functions.rst
+doc/source/modules/math/fit/index.rst
+doc/source/modules/math/fit/leastsq.rst
+doc/source/modules/math/fit/peaksearch.rst
+doc/source/modules/test/index.rst
+doc/source/modules/utils/array_like.rst
+doc/source/modules/utils/decorators.rst
+doc/source/modules/utils/html.rst
+doc/source/modules/utils/index.rst
+doc/source/modules/utils/weakref.rst
+doc/source/sample_code/index.rst
+doc/source/sample_code/img/animatedicons.png
+doc/source/sample_code/img/customHdf5TreeModel.png
+doc/source/sample_code/img/fftPlotAction.png
+doc/source/sample_code/img/hdf5widget.png
+doc/source/sample_code/img/icons.png
+doc/source/sample_code/img/imageview.png
+doc/source/sample_code/img/periodicTable.png
+doc/source/sample_code/img/plot3dContextMenu.png
+doc/source/sample_code/img/plotContextMenu.png
+doc/source/sample_code/img/plotItemsSelector.png
+doc/source/sample_code/img/plotLimits.png
+doc/source/sample_code/img/plotUpdateFromThread.png
+doc/source/sample_code/img/plotWidget.png
+doc/source/sample_code/img/printPreview.png
+doc/source/sample_code/img/scatterMask.png
+doc/source/sample_code/img/shiftPlotAction.png
+doc/source/sample_code/img/simplewidget.png
+doc/source/sample_code/img/stackView.png
+doc/source/sample_code/img/syncaxis.png
+doc/source/sample_code/img/viewer3DVolume.png
+examples/animatedicons.py
+examples/customHdf5TreeModel.py
+examples/fft.png
+examples/fftPlotAction.py
+examples/hdf5widget.py
+examples/icons.py
+examples/imageview.py
+examples/periodicTable.py
+examples/plot3dContextMenu.py
+examples/plotContextMenu.py
+examples/plotItemsSelector.py
+examples/plotLimits.py
+examples/plotUpdateFromThread.py
+examples/plotWidget.py
+examples/printPreview.py
+examples/scatterMask.py
+examples/shiftPlotAction.py
+examples/simplewidget.py
+examples/stackView.py
+examples/syncaxis.py
+examples/viewer3DVolume.py
+examples/writetoh5.py
+package/debian8/changelog
+package/debian8/clean
+package/debian8/compat
+package/debian8/control
+package/debian8/gbp.conf
+package/debian8/python-silx-doc.doc-base
+package/debian8/rules
+package/debian8/watch
+package/debian8/source/format
+package/debian8/source/options
+package/debian9/changelog
+package/debian9/clean
+package/debian9/compat
+package/debian9/control
+package/debian9/gbp.conf
+package/debian9/python-silx-doc.doc-base
+package/debian9/rules
+package/debian9/watch
+package/debian9/source/format
+package/debian9/source/options
+package/desktop/org.silx.SilxView.desktop
+package/desktop/silx.png
+package/desktop/silx.svg
+qtdesigner_plugins/README.rst
+qtdesigner_plugins/plot1dplugin.py
+qtdesigner_plugins/plot2dplugin.py
+qtdesigner_plugins/plotwidgetplugin.py
+qtdesigner_plugins/plotwindowplugin.py
+silx/__init__.py
+silx/__main__.py
+silx/setup.py
+silx.egg-info/PKG-INFO
+silx.egg-info/SOURCES.txt
+silx.egg-info/dependency_links.txt
+silx.egg-info/entry_points.txt
+silx.egg-info/not-zip-safe
+silx.egg-info/requires.txt
+silx.egg-info/top_level.txt
+silx/app/__init__.py
+silx/app/convert.py
+silx/app/qtutils.py
+silx/app/setup.py
+silx/app/test_.py
+silx/app/view.py
+silx/app/test/__init__.py
+silx/app/test/test_convert.py
+silx/app/test/test_view.py
+silx/gui/__init__.py
+silx/gui/_utils.py
+silx/gui/console.py
+silx/gui/icons.py
+silx/gui/setup.py
+silx/gui/_glutils/Context.py
+silx/gui/_glutils/FramebufferTexture.py
+silx/gui/_glutils/OpenGLWidget.py
+silx/gui/_glutils/Program.py
+silx/gui/_glutils/Texture.py
+silx/gui/_glutils/VertexBuffer.py
+silx/gui/_glutils/__init__.py
+silx/gui/_glutils/font.py
+silx/gui/_glutils/gl.py
+silx/gui/_glutils/utils.py
+silx/gui/data/ArrayTableModel.py
+silx/gui/data/ArrayTableWidget.py
+silx/gui/data/DataViewer.py
+silx/gui/data/DataViewerFrame.py
+silx/gui/data/DataViewerSelector.py
+silx/gui/data/DataViews.py
+silx/gui/data/Hdf5TableView.py
+silx/gui/data/HexaTableView.py
+silx/gui/data/NXdataWidgets.py
+silx/gui/data/NumpyAxesSelector.py
+silx/gui/data/RecordTableView.py
+silx/gui/data/TextFormatter.py
+silx/gui/data/__init__.py
+silx/gui/data/setup.py
+silx/gui/data/test/__init__.py
+silx/gui/data/test/test_arraywidget.py
+silx/gui/data/test/test_dataviewer.py
+silx/gui/data/test/test_numpyaxesselector.py
+silx/gui/data/test/test_textformatter.py
+silx/gui/fit/BackgroundWidget.py
+silx/gui/fit/FitConfig.py
+silx/gui/fit/FitWidget.py
+silx/gui/fit/FitWidgets.py
+silx/gui/fit/Parameters.py
+silx/gui/fit/__init__.py
+silx/gui/fit/setup.py
+silx/gui/fit/test/__init__.py
+silx/gui/fit/test/testBackgroundWidget.py
+silx/gui/fit/test/testFitConfig.py
+silx/gui/fit/test/testFitWidget.py
+silx/gui/hdf5/Hdf5Formatter.py
+silx/gui/hdf5/Hdf5HeaderView.py
+silx/gui/hdf5/Hdf5Item.py
+silx/gui/hdf5/Hdf5LoadingItem.py
+silx/gui/hdf5/Hdf5Node.py
+silx/gui/hdf5/Hdf5TreeModel.py
+silx/gui/hdf5/Hdf5TreeView.py
+silx/gui/hdf5/NexusSortFilterProxyModel.py
+silx/gui/hdf5/__init__.py
+silx/gui/hdf5/_utils.py
+silx/gui/hdf5/setup.py
+silx/gui/hdf5/test/__init__.py
+silx/gui/hdf5/test/test_hdf5.py
+silx/gui/plot/AlphaSlider.py
+silx/gui/plot/ColorBar.py
+silx/gui/plot/Colormap.py
+silx/gui/plot/ColormapDialog.py
+silx/gui/plot/Colors.py
+silx/gui/plot/ComplexImageView.py
+silx/gui/plot/CurvesROIWidget.py
+silx/gui/plot/ImageView.py
+silx/gui/plot/Interaction.py
+silx/gui/plot/ItemsSelectionDialog.py
+silx/gui/plot/LegendSelector.py
+silx/gui/plot/LimitsHistory.py
+silx/gui/plot/MaskToolsWidget.py
+silx/gui/plot/PlotActions.py
+silx/gui/plot/PlotEvents.py
+silx/gui/plot/PlotInteraction.py
+silx/gui/plot/PlotToolButtons.py
+silx/gui/plot/PlotTools.py
+silx/gui/plot/PlotWidget.py
+silx/gui/plot/PlotWindow.py
+silx/gui/plot/PrintPreviewToolButton.py
+silx/gui/plot/Profile.py
+silx/gui/plot/ProfileMainWindow.py
+silx/gui/plot/ScatterMaskToolsWidget.py
+silx/gui/plot/StackView.py
+silx/gui/plot/_BaseMaskToolsWidget.py
+silx/gui/plot/__init__.py
+silx/gui/plot/setup.py
+silx/gui/plot/_utils/__init__.py
+silx/gui/plot/_utils/panzoom.py
+silx/gui/plot/_utils/setup.py
+silx/gui/plot/_utils/ticklayout.py
+silx/gui/plot/_utils/test/__init__.py
+silx/gui/plot/_utils/test/test_ticklayout.py
+silx/gui/plot/actions/PlotAction.py
+silx/gui/plot/actions/__init__.py
+silx/gui/plot/actions/control.py
+silx/gui/plot/actions/fit.py
+silx/gui/plot/actions/histogram.py
+silx/gui/plot/actions/io.py
+silx/gui/plot/actions/medfilt.py
+silx/gui/plot/actions/mode.py
+silx/gui/plot/backends/BackendBase.py
+silx/gui/plot/backends/BackendMatplotlib.py
+silx/gui/plot/backends/BackendOpenGL.py
+silx/gui/plot/backends/__init__.py
+silx/gui/plot/backends/glutils/GLPlotCurve.py
+silx/gui/plot/backends/glutils/GLPlotFrame.py
+silx/gui/plot/backends/glutils/GLPlotImage.py
+silx/gui/plot/backends/glutils/GLSupport.py
+silx/gui/plot/backends/glutils/GLText.py
+silx/gui/plot/backends/glutils/GLTexture.py
+silx/gui/plot/backends/glutils/PlotImageFile.py
+silx/gui/plot/backends/glutils/__init__.py
+silx/gui/plot/items/__init__.py
+silx/gui/plot/items/axis.py
+silx/gui/plot/items/core.py
+silx/gui/plot/items/curve.py
+silx/gui/plot/items/histogram.py
+silx/gui/plot/items/image.py
+silx/gui/plot/items/marker.py
+silx/gui/plot/items/scatter.py
+silx/gui/plot/items/shape.py
+silx/gui/plot/matplotlib/Colormap.py
+silx/gui/plot/matplotlib/ModestImage.py
+silx/gui/plot/matplotlib/__init__.py
+silx/gui/plot/test/__init__.py
+silx/gui/plot/test/testAlphaSlider.py
+silx/gui/plot/test/testColorBar.py
+silx/gui/plot/test/testColormap.py
+silx/gui/plot/test/testColormapDialog.py
+silx/gui/plot/test/testColors.py
+silx/gui/plot/test/testComplexImageView.py
+silx/gui/plot/test/testCurvesROIWidget.py
+silx/gui/plot/test/testImageView.py
+silx/gui/plot/test/testInteraction.py
+silx/gui/plot/test/testItem.py
+silx/gui/plot/test/testLegendSelector.py
+silx/gui/plot/test/testLimitConstraints.py
+silx/gui/plot/test/testMaskToolsWidget.py
+silx/gui/plot/test/testPlotInteraction.py
+silx/gui/plot/test/testPlotTools.py
+silx/gui/plot/test/testPlotWidget.py
+silx/gui/plot/test/testPlotWidgetNoBackend.py
+silx/gui/plot/test/testPlotWindow.py
+silx/gui/plot/test/testProfile.py
+silx/gui/plot/test/testScatterMaskToolsWidget.py
+silx/gui/plot/test/testStackView.py
+silx/gui/plot/test/testUtilsAxis.py
+silx/gui/plot/test/utils.py
+silx/gui/plot/utils/__init__.py
+silx/gui/plot/utils/axis.py
+silx/gui/plot3d/Plot3DWidget.py
+silx/gui/plot3d/Plot3DWindow.py
+silx/gui/plot3d/SFViewParamTree.py
+silx/gui/plot3d/ScalarFieldView.py
+silx/gui/plot3d/__init__.py
+silx/gui/plot3d/setup.py
+silx/gui/plot3d/actions/Plot3DAction.py
+silx/gui/plot3d/actions/__init__.py
+silx/gui/plot3d/actions/io.py
+silx/gui/plot3d/actions/mode.py
+silx/gui/plot3d/actions/viewpoint.py
+silx/gui/plot3d/scene/__init__.py
+silx/gui/plot3d/scene/axes.py
+silx/gui/plot3d/scene/camera.py
+silx/gui/plot3d/scene/core.py
+silx/gui/plot3d/scene/cutplane.py
+silx/gui/plot3d/scene/event.py
+silx/gui/plot3d/scene/function.py
+silx/gui/plot3d/scene/interaction.py
+silx/gui/plot3d/scene/primitives.py
+silx/gui/plot3d/scene/setup.py
+silx/gui/plot3d/scene/text.py
+silx/gui/plot3d/scene/transform.py
+silx/gui/plot3d/scene/utils.py
+silx/gui/plot3d/scene/viewport.py
+silx/gui/plot3d/scene/window.py
+silx/gui/plot3d/scene/test/__init__.py
+silx/gui/plot3d/scene/test/test_transform.py
+silx/gui/plot3d/scene/test/test_utils.py
+silx/gui/plot3d/test/__init__.py
+silx/gui/plot3d/test/testGL.py
+silx/gui/plot3d/test/testScalarFieldView.py
+silx/gui/plot3d/tools/ViewpointTools.py
+silx/gui/plot3d/tools/__init__.py
+silx/gui/plot3d/tools/toolbars.py
+silx/gui/plot3d/utils/__init__.py
+silx/gui/plot3d/utils/mng.py
+silx/gui/qt/__init__.py
+silx/gui/qt/_macosx.py
+silx/gui/qt/_pyside_dynamic.py
+silx/gui/qt/_pyside_missing.py
+silx/gui/qt/_qt.py
+silx/gui/qt/_utils.py
+silx/gui/test/__init__.py
+silx/gui/test/test_console.py
+silx/gui/test/test_icons.py
+silx/gui/test/test_qt.py
+silx/gui/test/test_utils.py
+silx/gui/test/utils.py
+silx/gui/widgets/FloatEdit.py
+silx/gui/widgets/FrameBrowser.py
+silx/gui/widgets/HierarchicalTableView.py
+silx/gui/widgets/MedianFilterDialog.py
+silx/gui/widgets/PeriodicTable.py
+silx/gui/widgets/PrintGeometryDialog.py
+silx/gui/widgets/PrintPreview.py
+silx/gui/widgets/TableWidget.py
+silx/gui/widgets/ThreadPoolPushButton.py
+silx/gui/widgets/WaitingPushButton.py
+silx/gui/widgets/__init__.py
+silx/gui/widgets/setup.py
+silx/gui/widgets/test/__init__.py
+silx/gui/widgets/test/test_hierarchicaltableview.py
+silx/gui/widgets/test/test_periodictable.py
+silx/gui/widgets/test/test_printpreview.py
+silx/gui/widgets/test/test_tablewidget.py
+silx/gui/widgets/test/test_threadpoolpushbutton.py
+silx/image/__init__.py
+silx/image/backprojection.py
+silx/image/bilinear.c
+silx/image/bilinear.pyx
+silx/image/medianfilter.py
+silx/image/phantomgenerator.py
+silx/image/projection.py
+silx/image/reconstruction.py
+silx/image/setup.py
+silx/image/shapes.c
+silx/image/shapes.pyx
+silx/image/sift.py
+silx/image/tomography.py
+silx/image/test/__init__.py
+silx/image/test/test_bilinear.py
+silx/image/test/test_medianfilter.py
+silx/image/test/test_shapes.py
+silx/image/test/test_tomography.py
+silx/io/__init__.py
+silx/io/commonh5.py
+silx/io/configdict.py
+silx/io/convert.py
+silx/io/dictdump.py
+silx/io/fabioh5.py
+silx/io/nxdata.py
+silx/io/octaveh5.py
+silx/io/rawh5.py
+silx/io/setup.py
+silx/io/specfile.c
+silx/io/specfile.pyx
+silx/io/specfile_wrapper.pxd
+silx/io/specfilewrapper.py
+silx/io/spech5.py
+silx/io/spectoh5.py
+silx/io/utils.py
+silx/io/specfile/include/Lists.h
+silx/io/specfile/include/SpecFile.h
+silx/io/specfile/include/SpecFileCython.h
+silx/io/specfile/include/SpecFileP.h
+silx/io/specfile/include/locale_management.h
+silx/io/specfile/src/locale_management.c
+silx/io/specfile/src/sfdata.c
+silx/io/specfile/src/sfheader.c
+silx/io/specfile/src/sfindex.c
+silx/io/specfile/src/sfinit.c
+silx/io/specfile/src/sflabel.c
+silx/io/specfile/src/sflists.c
+silx/io/specfile/src/sfmca.c
+silx/io/specfile/src/sftools.c
+silx/io/specfile/src/sfwrite.c
+silx/io/test/__init__.py
+silx/io/test/test_commonh5.py
+silx/io/test/test_dictdump.py
+silx/io/test/test_fabioh5.py
+silx/io/test/test_nxdata.py
+silx/io/test/test_octaveh5.py
+silx/io/test/test_rawh5.py
+silx/io/test/test_specfile.py
+silx/io/test/test_specfilewrapper.py
+silx/io/test/test_spech5.py
+silx/io/test/test_spectoh5.py
+silx/io/test/test_utils.py
+silx/math/__init__.py
+silx/math/calibration.py
+silx/math/chistogramnd.c
+silx/math/chistogramnd.pyx
+silx/math/chistogramnd_lut.c
+silx/math/chistogramnd_lut.pyx
+silx/math/combo.c
+silx/math/combo.pyx
+silx/math/histogram.py
+silx/math/histogramnd_c.pxd
+silx/math/marchingcubes.cpp
+silx/math/marchingcubes.pyx
+silx/math/mc.pxd
+silx/math/setup.py
+silx/math/fit/__init__.py
+silx/math/fit/bgtheories.py
+silx/math/fit/filters.c
+silx/math/fit/filters.pyx
+silx/math/fit/filters_wrapper.pxd
+silx/math/fit/fitmanager.py
+silx/math/fit/fittheories.py
+silx/math/fit/fittheory.py
+silx/math/fit/functions.c
+silx/math/fit/functions.pyx
+silx/math/fit/functions_wrapper.pxd
+silx/math/fit/leastsq.py
+silx/math/fit/peaks.c
+silx/math/fit/peaks.pyx
+silx/math/fit/peaks_wrapper.pxd
+silx/math/fit/setup.py
+silx/math/fit/filters/include/filters.h
+silx/math/fit/filters/src/smoothnd.c
+silx/math/fit/filters/src/snip1d.c
+silx/math/fit/filters/src/snip2d.c
+silx/math/fit/filters/src/snip3d.c
+silx/math/fit/filters/src/strip.c
+silx/math/fit/functions/include/functions.h
+silx/math/fit/functions/src/funs.c
+silx/math/fit/peaks/include/peaks.h
+silx/math/fit/peaks/src/peaks.c
+silx/math/fit/test/__init__.py
+silx/math/fit/test/test_bgtheories.py
+silx/math/fit/test/test_filters.py
+silx/math/fit/test/test_fit.py
+silx/math/fit/test/test_fitmanager.py
+silx/math/fit/test/test_functions.py
+silx/math/fit/test/test_peaks.py
+silx/math/histogramnd/include/histogramnd_c.h
+silx/math/histogramnd/include/templates.h
+silx/math/histogramnd/include/msvc/stdint.h
+silx/math/histogramnd/src/histogramnd_c.c
+silx/math/histogramnd/src/histogramnd_template.c
+silx/math/include/isnan.h
+silx/math/marchingcubes/mc.hpp
+silx/math/marchingcubes/mc_lut.cpp
+silx/math/medianfilter/__init__.py
+silx/math/medianfilter/median_filter.pxd
+silx/math/medianfilter/medianfilter.cpp
+silx/math/medianfilter/medianfilter.pyx
+silx/math/medianfilter/setup.py
+silx/math/medianfilter/include/median_filter.hpp
+silx/math/medianfilter/test/__init__.py
+silx/math/medianfilter/test/benchmark.py
+silx/math/medianfilter/test/test_medianfilter.py
+silx/math/test/__init__.py
+silx/math/test/benchmark_combo.py
+silx/math/test/histo_benchmarks.py
+silx/math/test/test_HistogramndLut_nominal.py
+silx/math/test/test_combo.py
+silx/math/test/test_histogramnd_error.py
+silx/math/test/test_histogramnd_nominal.py
+silx/math/test/test_histogramnd_vs_np.py
+silx/math/test/test_marchingcubes.py
+silx/opencl/__init__.py
+silx/opencl/backprojection.py
+silx/opencl/common.py
+silx/opencl/linalg.py
+silx/opencl/medfilt.py
+silx/opencl/processing.py
+silx/opencl/projection.py
+silx/opencl/reconstruction.py
+silx/opencl/setup.py
+silx/opencl/utils.py
+silx/opencl/sift/__init__.py
+silx/opencl/sift/alignment.py
+silx/opencl/sift/match.py
+silx/opencl/sift/param.py
+silx/opencl/sift/plan.py
+silx/opencl/sift/setup.py
+silx/opencl/sift/sift.py
+silx/opencl/sift/utils.py
+silx/opencl/sift/test/__init__.py
+silx/opencl/sift/test/test_algebra.py
+silx/opencl/sift/test/test_align.py
+silx/opencl/sift/test/test_convol.py
+silx/opencl/sift/test/test_gaussian.py
+silx/opencl/sift/test/test_image.py
+silx/opencl/sift/test/test_image_functions.py
+silx/opencl/sift/test/test_image_setup.py
+silx/opencl/sift/test/test_keypoints.py
+silx/opencl/sift/test/test_matching.py
+silx/opencl/sift/test/test_preproc.py
+silx/opencl/sift/test/test_reductions.py
+silx/opencl/sift/test/test_transform.py
+silx/opencl/test/__init__.py
+silx/opencl/test/test_addition.py
+silx/opencl/test/test_array_utils.py
+silx/opencl/test/test_backprojection.py
+silx/opencl/test/test_linalg.py
+silx/opencl/test/test_medfilt.py
+silx/opencl/test/test_projection.py
+silx/resources/__init__.py
+silx/resources/gui/colormaps/inferno.npy
+silx/resources/gui/colormaps/magma.npy
+silx/resources/gui/colormaps/plasma.npy
+silx/resources/gui/colormaps/viridis.npy
+silx/resources/gui/icons/3d-plane-normal-x.png
+silx/resources/gui/icons/3d-plane-normal-x.svg
+silx/resources/gui/icons/3d-plane-normal-y.png
+silx/resources/gui/icons/3d-plane-normal-y.svg
+silx/resources/gui/icons/3d-plane-normal-z.png
+silx/resources/gui/icons/3d-plane-normal-z.svg
+silx/resources/gui/icons/3d-plane-pan.png
+silx/resources/gui/icons/3d-plane-pan.svg
+silx/resources/gui/icons/3d-plane.png
+silx/resources/gui/icons/3d-plane.svg
+silx/resources/gui/icons/arrow-keys.png
+silx/resources/gui/icons/arrow-keys.svg
+silx/resources/gui/icons/axis.png
+silx/resources/gui/icons/axis.svg
+silx/resources/gui/icons/camera.png
+silx/resources/gui/icons/camera.svg
+silx/resources/gui/icons/clipboard.png
+silx/resources/gui/icons/clipboard.svg
+silx/resources/gui/icons/close.png
+silx/resources/gui/icons/close.svg
+silx/resources/gui/icons/colorbar.png
+silx/resources/gui/icons/colorbar.svg
+silx/resources/gui/icons/colormap.png
+silx/resources/gui/icons/colormap.svg
+silx/resources/gui/icons/crop.png
+silx/resources/gui/icons/crop.svg
+silx/resources/gui/icons/crosshair.png
+silx/resources/gui/icons/crosshair.svg
+silx/resources/gui/icons/cube-back.png
+silx/resources/gui/icons/cube-back.svg
+silx/resources/gui/icons/cube-bottom.png
+silx/resources/gui/icons/cube-bottom.svg
+silx/resources/gui/icons/cube-front.png
+silx/resources/gui/icons/cube-front.svg
+silx/resources/gui/icons/cube-left.png
+silx/resources/gui/icons/cube-left.svg
+silx/resources/gui/icons/cube-right.png
+silx/resources/gui/icons/cube-right.svg
+silx/resources/gui/icons/cube-rotate.png
+silx/resources/gui/icons/cube-rotate.svg
+silx/resources/gui/icons/cube-top.png
+silx/resources/gui/icons/cube-top.svg
+silx/resources/gui/icons/cube.png
+silx/resources/gui/icons/cube.svg
+silx/resources/gui/icons/document-open.png
+silx/resources/gui/icons/document-open.svg
+silx/resources/gui/icons/document-print.png
+silx/resources/gui/icons/document-print.svg
+silx/resources/gui/icons/document-save.png
+silx/resources/gui/icons/document-save.svg
+silx/resources/gui/icons/draw-brush.png
+silx/resources/gui/icons/draw-brush.svg
+silx/resources/gui/icons/draw-pencil.png
+silx/resources/gui/icons/draw-pencil.svg
+silx/resources/gui/icons/draw-rubber.png
+silx/resources/gui/icons/draw-rubber.svg
+silx/resources/gui/icons/edit-copy.png
+silx/resources/gui/icons/edit-copy.svg
+silx/resources/gui/icons/first.png
+silx/resources/gui/icons/first.svg
+silx/resources/gui/icons/folder.png
+silx/resources/gui/icons/folder.svg
+silx/resources/gui/icons/image-mask.png
+silx/resources/gui/icons/image-mask.svg
+silx/resources/gui/icons/image-select-add.png
+silx/resources/gui/icons/image-select-add.svg
+silx/resources/gui/icons/image-select-box.png
+silx/resources/gui/icons/image-select-box.svg
+silx/resources/gui/icons/image-select-brush.png
+silx/resources/gui/icons/image-select-brush.svg
+silx/resources/gui/icons/image-select-erase-rubber.png
+silx/resources/gui/icons/image-select-erase-rubber.svg
+silx/resources/gui/icons/image-select-erase.png
+silx/resources/gui/icons/image-select-erase.svg
+silx/resources/gui/icons/image.png
+silx/resources/gui/icons/image.svg
+silx/resources/gui/icons/item-0dim.png
+silx/resources/gui/icons/item-0dim.svg
+silx/resources/gui/icons/item-1dim.png
+silx/resources/gui/icons/item-1dim.svg
+silx/resources/gui/icons/item-2dim.png
+silx/resources/gui/icons/item-2dim.svg
+silx/resources/gui/icons/item-3dim.png
+silx/resources/gui/icons/item-3dim.svg
+silx/resources/gui/icons/item-ndim.png
+silx/resources/gui/icons/item-ndim.svg
+silx/resources/gui/icons/item-none.png
+silx/resources/gui/icons/item-none.svg
+silx/resources/gui/icons/item-object.png
+silx/resources/gui/icons/item-object.svg
+silx/resources/gui/icons/last.png
+silx/resources/gui/icons/last.svg
+silx/resources/gui/icons/math-amplitude.png
+silx/resources/gui/icons/math-amplitude.svg
+silx/resources/gui/icons/math-average.png
+silx/resources/gui/icons/math-average.svg
+silx/resources/gui/icons/math-derive.png
+silx/resources/gui/icons/math-derive.svg
+silx/resources/gui/icons/math-energy.png
+silx/resources/gui/icons/math-energy.svg
+silx/resources/gui/icons/math-fit.png
+silx/resources/gui/icons/math-fit.svg
+silx/resources/gui/icons/math-imaginary.png
+silx/resources/gui/icons/math-imaginary.svg
+silx/resources/gui/icons/math-normalize.png
+silx/resources/gui/icons/math-normalize.svg
+silx/resources/gui/icons/math-peak-reset.png
+silx/resources/gui/icons/math-peak-reset.svg
+silx/resources/gui/icons/math-peak-search.png
+silx/resources/gui/icons/math-peak-search.svg
+silx/resources/gui/icons/math-peak.png
+silx/resources/gui/icons/math-peak.svg
+silx/resources/gui/icons/math-phase-color-log.png
+silx/resources/gui/icons/math-phase-color-log.svg
+silx/resources/gui/icons/math-phase-color.png
+silx/resources/gui/icons/math-phase-color.svg
+silx/resources/gui/icons/math-phase.png
+silx/resources/gui/icons/math-phase.svg
+silx/resources/gui/icons/math-real.png
+silx/resources/gui/icons/math-real.svg
+silx/resources/gui/icons/math-sigma.png
+silx/resources/gui/icons/math-sigma.svg
+silx/resources/gui/icons/math-smooth.png
+silx/resources/gui/icons/math-smooth.svg
+silx/resources/gui/icons/math-substract.png
+silx/resources/gui/icons/math-substract.svg
+silx/resources/gui/icons/math-swap-sign.png
+silx/resources/gui/icons/math-swap-sign.svg
+silx/resources/gui/icons/math-ymin-to-zero.png
+silx/resources/gui/icons/math-ymin-to-zero.svg
+silx/resources/gui/icons/median-filter.png
+silx/resources/gui/icons/median-filter.svg
+silx/resources/gui/icons/next.png
+silx/resources/gui/icons/next.svg
+silx/resources/gui/icons/normal.png
+silx/resources/gui/icons/normal.svg
+silx/resources/gui/icons/pan.png
+silx/resources/gui/icons/pan.svg
+silx/resources/gui/icons/pixel-intensities.png
+silx/resources/gui/icons/pixel-intensities.svg
+silx/resources/gui/icons/plot-grid.png
+silx/resources/gui/icons/plot-grid.svg
+silx/resources/gui/icons/plot-roi-above.png
+silx/resources/gui/icons/plot-roi-above.svg
+silx/resources/gui/icons/plot-roi-below.png
+silx/resources/gui/icons/plot-roi-below.svg
+silx/resources/gui/icons/plot-roi-between.png
+silx/resources/gui/icons/plot-roi-between.svg
+silx/resources/gui/icons/plot-roi-reset.png
+silx/resources/gui/icons/plot-roi-reset.svg
+silx/resources/gui/icons/plot-roi.png
+silx/resources/gui/icons/plot-roi.svg
+silx/resources/gui/icons/plot-toggle-points.png
+silx/resources/gui/icons/plot-toggle-points.svg
+silx/resources/gui/icons/plot-widget.png
+silx/resources/gui/icons/plot-widget.svg
+silx/resources/gui/icons/plot-window-image.png
+silx/resources/gui/icons/plot-window-image.svg
+silx/resources/gui/icons/plot-window.png
+silx/resources/gui/icons/plot-window.svg
+silx/resources/gui/icons/plot-xauto.png
+silx/resources/gui/icons/plot-xauto.svg
+silx/resources/gui/icons/plot-xlog.png
+silx/resources/gui/icons/plot-xlog.svg
+silx/resources/gui/icons/plot-yauto.png
+silx/resources/gui/icons/plot-yauto.svg
+silx/resources/gui/icons/plot-ydown.png
+silx/resources/gui/icons/plot-ydown.svg
+silx/resources/gui/icons/plot-ylog.png
+silx/resources/gui/icons/plot-ylog.svg
+silx/resources/gui/icons/plot-yup.png
+silx/resources/gui/icons/plot-yup.svg
+silx/resources/gui/icons/previous.png
+silx/resources/gui/icons/previous.svg
+silx/resources/gui/icons/process-working.mng
+silx/resources/gui/icons/profile-clear.png
+silx/resources/gui/icons/profile-clear.svg
+silx/resources/gui/icons/profile1D.png
+silx/resources/gui/icons/profile1D.svg
+silx/resources/gui/icons/profile2D.png
+silx/resources/gui/icons/profile2D.svg
+silx/resources/gui/icons/remove.png
+silx/resources/gui/icons/remove.svg
+silx/resources/gui/icons/rotate-3d.png
+silx/resources/gui/icons/rotate-3d.svg
+silx/resources/gui/icons/rudder.png
+silx/resources/gui/icons/rudder.svg
+silx/resources/gui/icons/selected.png
+silx/resources/gui/icons/selected.svg
+silx/resources/gui/icons/shape-circle-solid.png
+silx/resources/gui/icons/shape-circle-solid.svg
+silx/resources/gui/icons/shape-circle.png
+silx/resources/gui/icons/shape-circle.svg
+silx/resources/gui/icons/shape-diagonal.png
+silx/resources/gui/icons/shape-diagonal.svg
+silx/resources/gui/icons/shape-ellipse-solid.png
+silx/resources/gui/icons/shape-ellipse-solid.svg
+silx/resources/gui/icons/shape-ellipse.png
+silx/resources/gui/icons/shape-ellipse.svg
+silx/resources/gui/icons/shape-horizontal.png
+silx/resources/gui/icons/shape-horizontal.svg
+silx/resources/gui/icons/shape-polygon.png
+silx/resources/gui/icons/shape-polygon.svg
+silx/resources/gui/icons/shape-rectangle.png
+silx/resources/gui/icons/shape-rectangle.svg
+silx/resources/gui/icons/shape-square.png
+silx/resources/gui/icons/shape-square.svg
+silx/resources/gui/icons/shape-vertical.png
+silx/resources/gui/icons/shape-vertical.svg
+silx/resources/gui/icons/silx.png
+silx/resources/gui/icons/silx.svg
+silx/resources/gui/icons/sliders-off.png
+silx/resources/gui/icons/sliders-off.svg
+silx/resources/gui/icons/sliders-on.png
+silx/resources/gui/icons/sliders-on.svg
+silx/resources/gui/icons/spec.png
+silx/resources/gui/icons/spec.svg
+silx/resources/gui/icons/view-1d.png
+silx/resources/gui/icons/view-1d.svg
+silx/resources/gui/icons/view-2d-stack.png
+silx/resources/gui/icons/view-2d-stack.svg
+silx/resources/gui/icons/view-2d.png
+silx/resources/gui/icons/view-2d.svg
+silx/resources/gui/icons/view-3d.png
+silx/resources/gui/icons/view-3d.svg
+silx/resources/gui/icons/view-fullscreen.png
+silx/resources/gui/icons/view-fullscreen.svg
+silx/resources/gui/icons/view-hdf5.png
+silx/resources/gui/icons/view-hdf5.svg
+silx/resources/gui/icons/view-nexus.png
+silx/resources/gui/icons/view-nexus.svg
+silx/resources/gui/icons/view-nofullscreen.png
+silx/resources/gui/icons/view-nofullscreen.svg
+silx/resources/gui/icons/view-raw.png
+silx/resources/gui/icons/view-raw.svg
+silx/resources/gui/icons/view-refresh.png
+silx/resources/gui/icons/view-refresh.svg
+silx/resources/gui/icons/view-text.png
+silx/resources/gui/icons/view-text.svg
+silx/resources/gui/icons/window-new.png
+silx/resources/gui/icons/window-new.svg
+silx/resources/gui/icons/zoom-back.png
+silx/resources/gui/icons/zoom-back.svg
+silx/resources/gui/icons/zoom-in.png
+silx/resources/gui/icons/zoom-in.svg
+silx/resources/gui/icons/zoom-original.png
+silx/resources/gui/icons/zoom-original.svg
+silx/resources/gui/icons/zoom-out.png
+silx/resources/gui/icons/zoom-out.svg
+silx/resources/gui/icons/zoom.png
+silx/resources/gui/icons/zoom.svg
+silx/resources/gui/icons/process-working/00.png
+silx/resources/gui/icons/process-working/01.png
+silx/resources/gui/icons/process-working/02.png
+silx/resources/gui/icons/process-working/03.png
+silx/resources/gui/icons/process-working/04.png
+silx/resources/gui/icons/process-working/05.png
+silx/resources/gui/icons/process-working/06.png
+silx/resources/gui/icons/process-working/07.png
+silx/resources/gui/icons/process-working/08.png
+silx/resources/gui/icons/process-working/09.png
+silx/resources/gui/icons/process-working/10.png
+silx/resources/gui/icons/process-working/11.png
+silx/resources/gui/icons/process-working/12.png
+silx/resources/gui/icons/process-working/13.png
+silx/resources/gui/icons/process-working/14.png
+silx/resources/gui/icons/process-working/15.png
+silx/resources/gui/icons/process-working/16.png
+silx/resources/gui/icons/process-working/17.png
+silx/resources/gui/icons/process-working/18.png
+silx/resources/gui/icons/process-working/19.png
+silx/resources/gui/icons/process-working/20.png
+silx/resources/gui/icons/process-working/21.png
+silx/resources/gui/icons/process-working/22.png
+silx/resources/gui/icons/process-working/23.png
+silx/resources/gui/icons/process-working/24.png
+silx/resources/gui/icons/process-working/25.png
+silx/resources/gui/icons/process-working/26.png
+silx/resources/gui/icons/process-working/27.png
+silx/resources/gui/icons/process-working/28.png
+silx/resources/gui/icons/process-working/29.png
+silx/resources/gui/icons/process-working/30.png
+silx/resources/gui/logo/silx.png
+silx/resources/gui/logo/silx.svg
+silx/resources/opencl/addition.cl
+silx/resources/opencl/array_utils.cl
+silx/resources/opencl/backproj.cl
+silx/resources/opencl/backproj_helper.cl
+silx/resources/opencl/bitonic.cl
+silx/resources/opencl/linalg.cl
+silx/resources/opencl/medfilt.cl
+silx/resources/opencl/preprocess.cl
+silx/resources/opencl/proj.cl
+silx/resources/opencl/sift/addition.cl
+silx/resources/opencl/sift/algebra.cl
+silx/resources/opencl/sift/convolution.cl
+silx/resources/opencl/sift/gaussian.cl
+silx/resources/opencl/sift/image.cl
+silx/resources/opencl/sift/interpolation.cl
+silx/resources/opencl/sift/keypoints_cpu.cl
+silx/resources/opencl/sift/keypoints_gpu1.cl
+silx/resources/opencl/sift/keypoints_gpu2.cl
+silx/resources/opencl/sift/matching_cpu.cl
+silx/resources/opencl/sift/matching_gpu.cl
+silx/resources/opencl/sift/memset.cl
+silx/resources/opencl/sift/orientation_cpu.cl
+silx/resources/opencl/sift/orientation_gpu.cl
+silx/resources/opencl/sift/preprocess.cl
+silx/resources/opencl/sift/reductions.cl
+silx/resources/opencl/sift/transform.cl
+silx/sx/__init__.py
+silx/sx/_plot.py
+silx/test/__init__.py
+silx/test/test_resources.py
+silx/test/test_sx.py
+silx/test/test_version.py
+silx/test/utils.py
+silx/third_party/EdfFile.py
+silx/third_party/TiffIO.py
+silx/third_party/__init__.py
+silx/third_party/enum.py
+silx/third_party/setup.py
+silx/third_party/six.py
+silx/third_party/_local/__init__.py
+silx/third_party/_local/enum.py
+silx/third_party/_local/six.py
+silx/utils/__init__.py
+silx/utils/array_like.py
+silx/utils/deprecation.py
+silx/utils/html.py
+silx/utils/launcher.py
+silx/utils/proxy.py
+silx/utils/setup.py
+silx/utils/weakref.py
+silx/utils/test/__init__.py
+silx/utils/test/test_array_like.py
+silx/utils/test/test_deprecation.py
+silx/utils/test/test_html.py
+silx/utils/test/test_launcher.py
+silx/utils/test/test_launcher_command.py
+silx/utils/test/test_proxy.py
+silx/utils/test/test_weakref.py \ No newline at end of file
diff --git a/silx.egg-info/dependency_links.txt b/silx.egg-info/dependency_links.txt
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/silx.egg-info/dependency_links.txt
@@ -0,0 +1 @@
+
diff --git a/silx.egg-info/entry_points.txt b/silx.egg-info/entry_points.txt
new file mode 100644
index 0000000..898d662
--- /dev/null
+++ b/silx.egg-info/entry_points.txt
@@ -0,0 +1,3 @@
+[console_scripts]
+silx = silx.__main__:main
+
diff --git a/silx.egg-info/not-zip-safe b/silx.egg-info/not-zip-safe
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/silx.egg-info/not-zip-safe
@@ -0,0 +1 @@
+
diff --git a/silx.egg-info/requires.txt b/silx.egg-info/requires.txt
new file mode 100644
index 0000000..e18e48e
--- /dev/null
+++ b/silx.egg-info/requires.txt
@@ -0,0 +1,2 @@
+numpy
+setuptools
diff --git a/silx.egg-info/top_level.txt b/silx.egg-info/top_level.txt
new file mode 100644
index 0000000..dbcf435
--- /dev/null
+++ b/silx.egg-info/top_level.txt
@@ -0,0 +1 @@
+silx