tomopari 0.1.0__py3-none-any.whl

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.
tomopari/__init__.py ADDED
@@ -0,0 +1,11 @@
1
+ try:
2
+ from ._version import version as __version__
3
+ except ImportError:
4
+ __version__ = "unknown"
5
+ __author__ = "Marcos Obando and Minh Nhat Trinh"
6
+ __credits__ = "Teresa Correia and Germán Mato"
7
+ __email__ = "marcos.obando@ib.edu.ar"
8
+
9
+
10
+ from ._reconstruction_widget import ReconstructionWidget
11
+ from .processors import OPTProcessor