tomwer 1.3.26__py3-none-any.whl → 1.3.28__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.
@@ -23,7 +23,7 @@
23
23
  #############################################################################*/
24
24
 
25
25
  """This module analyze headDir data directory
26
- to detect scan to be reconstructed
26
+ to detect scan to be reconstructed
27
27
  """
28
28
 
29
29
  __authors__ = ["H. Payno"]
@@ -287,7 +287,7 @@ def send_signal_to_local_rpc_servers(signal, port, extended_find=True):
287
287
  proc.send_signal(signal)
288
288
  found = True
289
289
  return
290
- except (psutil.PermissionError, psutil.AccessDenied):
290
+ except (PermissionError, psutil.AccessDenied):
291
291
  pass
292
292
  if not extended_find:
293
293
  return
@@ -302,5 +302,5 @@ def send_signal_to_local_rpc_servers(signal, port, extended_find=True):
302
302
  f"process pid: {proc.pid} - {proc.name()} seems to be one occupying port {port}"
303
303
  )
304
304
  return
305
- except (psutil.PermissionError, psutil.AccessDenied):
305
+ except (PermissionError, psutil.AccessDenied):
306
306
  pass
@@ -23,7 +23,7 @@
23
23
  #############################################################################*/
24
24
 
25
25
  """This module analyze headDir data directory
26
- to detect scan to be reconstructed
26
+ to detect scan to be reconstructed
27
27
  """
28
28
 
29
29
  __authors__ = ["H. Payno"]
@@ -1,5 +1,4 @@
1
- """utils around screenshots.
2
- """
1
+ """utils around screenshots."""
3
2
 
4
3
  from .icatbase import IcatProcessedDataBase
5
4
  from tomwer.core.scan.scanbase import TomwerScanBase
@@ -22,8 +22,7 @@
22
22
  #
23
23
  #############################################################################
24
24
 
25
- """contain the AxisProcess
26
- """
25
+ """contain the AxisProcess"""
27
26
 
28
27
  __authors__ = ["C.Nemoz", "H.Payno"]
29
28
  __license__ = "MIT"
@@ -209,7 +209,7 @@ class CastVolumeTask(
209
209
  )
210
210
  if overwrite:
211
211
  command += " --overwrite"
212
- command += f" --output_type={str(output_data_type)}"
212
+ command += f" --output-data-type={str(output_data_type)}"
213
213
  if data_min is not None:
214
214
  command += f" --data_min={data_min}"
215
215
  if data_max is not None:
@@ -22,8 +22,7 @@
22
22
  #
23
23
  #############################################################################
24
24
 
25
- """contain utils for score process
26
- """
25
+ """contain utils for score process"""
27
26
 
28
27
  __authors__ = [
29
28
  "H.Payno",
@@ -22,8 +22,7 @@
22
22
  #
23
23
  #############################################################################
24
24
 
25
- """contain the SAAxisProcess. Half automatic center of rotation calculation
26
- """
25
+ """contain the SAAxisProcess. Half automatic center of rotation calculation"""
27
26
 
28
27
  __authors__ = [
29
28
  "H.Payno",
@@ -22,8 +22,7 @@
22
22
  #
23
23
  #############################################################################
24
24
 
25
- """contain the SADeltaBetaProcess. Half automatic best delta / beta finder
26
- """
25
+ """contain the SADeltaBetaProcess. Half automatic best delta / beta finder"""
27
26
 
28
27
  __authors__ = [
29
28
  "H.Payno",
@@ -56,7 +56,7 @@ class ScanFactory(object):
56
56
  @docstring(_oScanFactory.create_scan_object)
57
57
  @staticmethod
58
58
  def create_tomo_object_from_identifier(
59
- identifier: Union[str, BaseIdentifier]
59
+ identifier: Union[str, BaseIdentifier],
60
60
  ) -> TomoObject:
61
61
  """
62
62
  Create an instance of TomoScanBase from his identifier if possible
@@ -860,10 +860,6 @@ class ZStitchingWindow(qt.QMainWindow):
860
860
  level >= ConfigurationLevel.ADVANCED
861
861
  )
862
862
 
863
- def close(self):
864
- shutil.rmtree(self._previewFolder, ignore_errors=True)
865
- super().close()
866
-
867
863
 
868
864
  def concatenate_dict(dict_1, dict_2) -> dict:
869
865
  """update dict which has dict as values. And we want concatenate those values to"""
@@ -21,8 +21,7 @@
21
21
  # THE SOFTWARE.
22
22
  #
23
23
  #############################################################################*/
24
- """some utils relative to PyHST
25
- """
24
+ """some utils relative to PyHST"""
26
25
 
27
26
  __authors__ = ["H. Payno"]
28
27
  __license__ = "MIT"
tomwer/version.py CHANGED
@@ -77,7 +77,7 @@ RELEASE_LEVEL_VALUE = {
77
77
 
78
78
  MAJOR = 1
79
79
  MINOR = 3
80
- MICRO = 26
80
+ MICRO = 28
81
81
  RELEV = "final" # <16
82
82
  SERIAL = 0 # <16
83
83
 
@@ -0,0 +1,292 @@
1
+ Metadata-Version: 2.2
2
+ Name: tomwer
3
+ Version: 1.3.28
4
+ Summary: "tomography workflow tools"
5
+ Home-page: https://gitlab.esrf.fr/tomotools/tomwer
6
+ Author: data analysis unit
7
+ Author-email: henri.payno@esrf.fr
8
+ License: MIT
9
+ Project-URL: Bug Tracker, https://gitlab.esrf.fr/tomotools/tomwer/-/issues
10
+ Keywords: orange3 add-on,ewoks
11
+ Classifier: Intended Audience :: Education
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Environment :: Console
16
+ Classifier: Environment :: X11 Applications :: Qt
17
+ Classifier: Operating System :: POSIX
18
+ Classifier: Natural Language :: English
19
+ Classifier: Topic :: Scientific/Engineering :: Physics
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Requires-Python: >=3.8
22
+ Description-Content-Type: text/x-rst
23
+ License-File: LICENSE
24
+ Requires-Dist: numpy
25
+ Requires-Dist: setuptools
26
+ Requires-Dist: psutil
27
+ Requires-Dist: silx[full]>=2.0
28
+ Requires-Dist: tomoscan<2.1,>=2.0.0a11
29
+ Requires-Dist: nxtomo<1.3,>=1.2.3rc1
30
+ Requires-Dist: nxtomomill<1.1,>=1.0dev
31
+ Requires-Dist: processview>=1.3
32
+ Requires-Dist: ewoks>=0.1.1
33
+ Requires-Dist: ewoksorange<0.7,>=0.6
34
+ Requires-Dist: sluurp>=0.3.3
35
+ Requires-Dist: packaging
36
+ Requires-Dist: flufl-lock
37
+ Requires-Dist: pyunitsystem<2.0,>=1.1.0
38
+ Provides-Extra: full-base
39
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "full-base"
40
+ Requires-Dist: rsyncmanager; extra == "full-base"
41
+ Requires-Dist: graypy; extra == "full-base"
42
+ Requires-Dist: fabio; extra == "full-base"
43
+ Requires-Dist: h5py>=3; extra == "full-base"
44
+ Requires-Dist: lxml; extra == "full-base"
45
+ Requires-Dist: werkzeug; extra == "full-base"
46
+ Requires-Dist: json-rpc; extra == "full-base"
47
+ Requires-Dist: scipy; extra == "full-base"
48
+ Requires-Dist: Pillow; extra == "full-base"
49
+ Requires-Dist: glymur; extra == "full-base"
50
+ Requires-Dist: resource; extra == "full-base"
51
+ Requires-Dist: tifffile; extra == "full-base"
52
+ Requires-Dist: hdf5plugin; extra == "full-base"
53
+ Requires-Dist: pyicat_plus; extra == "full-base"
54
+ Provides-Extra: full-no-nabu
55
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "full-no-nabu"
56
+ Requires-Dist: rsyncmanager; extra == "full-no-nabu"
57
+ Requires-Dist: graypy; extra == "full-no-nabu"
58
+ Requires-Dist: fabio; extra == "full-no-nabu"
59
+ Requires-Dist: h5py>=3; extra == "full-no-nabu"
60
+ Requires-Dist: lxml; extra == "full-no-nabu"
61
+ Requires-Dist: werkzeug; extra == "full-no-nabu"
62
+ Requires-Dist: json-rpc; extra == "full-no-nabu"
63
+ Requires-Dist: scipy; extra == "full-no-nabu"
64
+ Requires-Dist: Pillow; extra == "full-no-nabu"
65
+ Requires-Dist: glymur; extra == "full-no-nabu"
66
+ Requires-Dist: resource; extra == "full-no-nabu"
67
+ Requires-Dist: tifffile; extra == "full-no-nabu"
68
+ Requires-Dist: hdf5plugin; extra == "full-no-nabu"
69
+ Requires-Dist: pyicat_plus; extra == "full-no-nabu"
70
+ Provides-Extra: full-no-cuda
71
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "full-no-cuda"
72
+ Requires-Dist: rsyncmanager; extra == "full-no-cuda"
73
+ Requires-Dist: graypy; extra == "full-no-cuda"
74
+ Requires-Dist: fabio; extra == "full-no-cuda"
75
+ Requires-Dist: h5py>=3; extra == "full-no-cuda"
76
+ Requires-Dist: lxml; extra == "full-no-cuda"
77
+ Requires-Dist: werkzeug; extra == "full-no-cuda"
78
+ Requires-Dist: json-rpc; extra == "full-no-cuda"
79
+ Requires-Dist: scipy; extra == "full-no-cuda"
80
+ Requires-Dist: Pillow; extra == "full-no-cuda"
81
+ Requires-Dist: glymur; extra == "full-no-cuda"
82
+ Requires-Dist: resource; extra == "full-no-cuda"
83
+ Requires-Dist: tifffile; extra == "full-no-cuda"
84
+ Requires-Dist: hdf5plugin; extra == "full-no-cuda"
85
+ Requires-Dist: pyicat_plus; extra == "full-no-cuda"
86
+ Requires-Dist: nabu<2024.2,>=2023.3.1dev; extra == "full-no-cuda"
87
+ Provides-Extra: full
88
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "full"
89
+ Requires-Dist: rsyncmanager; extra == "full"
90
+ Requires-Dist: graypy; extra == "full"
91
+ Requires-Dist: fabio; extra == "full"
92
+ Requires-Dist: h5py>=3; extra == "full"
93
+ Requires-Dist: lxml; extra == "full"
94
+ Requires-Dist: werkzeug; extra == "full"
95
+ Requires-Dist: json-rpc; extra == "full"
96
+ Requires-Dist: scipy; extra == "full"
97
+ Requires-Dist: Pillow; extra == "full"
98
+ Requires-Dist: glymur; extra == "full"
99
+ Requires-Dist: resource; extra == "full"
100
+ Requires-Dist: tifffile; extra == "full"
101
+ Requires-Dist: hdf5plugin; extra == "full"
102
+ Requires-Dist: pyicat_plus; extra == "full"
103
+ Requires-Dist: nabu[full]>=2023.3.1dev; extra == "full"
104
+ Requires-Dist: pycuda<2024.1.1; extra == "full"
105
+ Requires-Dist: scikit-cuda; extra == "full"
106
+ Provides-Extra: doc
107
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "doc"
108
+ Requires-Dist: rsyncmanager; extra == "doc"
109
+ Requires-Dist: graypy; extra == "doc"
110
+ Requires-Dist: fabio; extra == "doc"
111
+ Requires-Dist: h5py>=3; extra == "doc"
112
+ Requires-Dist: lxml; extra == "doc"
113
+ Requires-Dist: werkzeug; extra == "doc"
114
+ Requires-Dist: json-rpc; extra == "doc"
115
+ Requires-Dist: scipy; extra == "doc"
116
+ Requires-Dist: Pillow; extra == "doc"
117
+ Requires-Dist: glymur; extra == "doc"
118
+ Requires-Dist: resource; extra == "doc"
119
+ Requires-Dist: tifffile; extra == "doc"
120
+ Requires-Dist: hdf5plugin; extra == "doc"
121
+ Requires-Dist: pyicat_plus; extra == "doc"
122
+ Requires-Dist: nabu<2024.2,>=2023.3.1dev; extra == "doc"
123
+ Requires-Dist: Sphinx>=4.0.0; extra == "doc"
124
+ Requires-Dist: nbsphinx; extra == "doc"
125
+ Requires-Dist: pandoc; extra == "doc"
126
+ Requires-Dist: jupyterlab; extra == "doc"
127
+ Requires-Dist: pydata_sphinx_theme; extra == "doc"
128
+ Requires-Dist: sphinx-design; extra == "doc"
129
+ Requires-Dist: sphinx-autodoc-typehints; extra == "doc"
130
+ Provides-Extra: dev-spec
131
+ Requires-Dist: black; extra == "dev-spec"
132
+ Requires-Dist: flake8; extra == "dev-spec"
133
+ Requires-Dist: timeout-decorator; extra == "dev-spec"
134
+ Requires-Dist: pyopencl; extra == "dev-spec"
135
+ Provides-Extra: dev
136
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "dev"
137
+ Requires-Dist: rsyncmanager; extra == "dev"
138
+ Requires-Dist: graypy; extra == "dev"
139
+ Requires-Dist: fabio; extra == "dev"
140
+ Requires-Dist: h5py>=3; extra == "dev"
141
+ Requires-Dist: lxml; extra == "dev"
142
+ Requires-Dist: werkzeug; extra == "dev"
143
+ Requires-Dist: json-rpc; extra == "dev"
144
+ Requires-Dist: scipy; extra == "dev"
145
+ Requires-Dist: Pillow; extra == "dev"
146
+ Requires-Dist: glymur; extra == "dev"
147
+ Requires-Dist: resource; extra == "dev"
148
+ Requires-Dist: tifffile; extra == "dev"
149
+ Requires-Dist: hdf5plugin; extra == "dev"
150
+ Requires-Dist: pyicat_plus; extra == "dev"
151
+ Requires-Dist: nabu[full]>=2023.3.1dev; extra == "dev"
152
+ Requires-Dist: pycuda<2024.1.1; extra == "dev"
153
+ Requires-Dist: scikit-cuda; extra == "dev"
154
+ Requires-Dist: black; extra == "dev"
155
+ Requires-Dist: flake8; extra == "dev"
156
+ Requires-Dist: timeout-decorator; extra == "dev"
157
+ Requires-Dist: pyopencl; extra == "dev"
158
+ Provides-Extra: dev-no-cuda
159
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "dev-no-cuda"
160
+ Requires-Dist: rsyncmanager; extra == "dev-no-cuda"
161
+ Requires-Dist: graypy; extra == "dev-no-cuda"
162
+ Requires-Dist: fabio; extra == "dev-no-cuda"
163
+ Requires-Dist: h5py>=3; extra == "dev-no-cuda"
164
+ Requires-Dist: lxml; extra == "dev-no-cuda"
165
+ Requires-Dist: werkzeug; extra == "dev-no-cuda"
166
+ Requires-Dist: json-rpc; extra == "dev-no-cuda"
167
+ Requires-Dist: scipy; extra == "dev-no-cuda"
168
+ Requires-Dist: Pillow; extra == "dev-no-cuda"
169
+ Requires-Dist: glymur; extra == "dev-no-cuda"
170
+ Requires-Dist: resource; extra == "dev-no-cuda"
171
+ Requires-Dist: tifffile; extra == "dev-no-cuda"
172
+ Requires-Dist: hdf5plugin; extra == "dev-no-cuda"
173
+ Requires-Dist: pyicat_plus; extra == "dev-no-cuda"
174
+ Requires-Dist: nabu<2024.2,>=2023.3.1dev; extra == "dev-no-cuda"
175
+ Requires-Dist: black; extra == "dev-no-cuda"
176
+ Requires-Dist: flake8; extra == "dev-no-cuda"
177
+ Requires-Dist: timeout-decorator; extra == "dev-no-cuda"
178
+ Requires-Dist: pyopencl; extra == "dev-no-cuda"
179
+ Provides-Extra: test
180
+ Requires-Dist: pytest-asyncio; extra == "test"
181
+ Requires-Dist: tomoscan[test]>=2.0.2rc17; extra == "test"
182
+ Provides-Extra: setup-requires
183
+ Requires-Dist: setuptools; extra == "setup-requires"
184
+ Requires-Dist: numpy>=1.12; extra == "setup-requires"
185
+
186
+ tomwer
187
+ ======
188
+
189
+ tomwer is offering tools to automate acquisition and reconstruction processes for Tomography.
190
+ It contains:
191
+
192
+ - a library to access each acquisition process individually
193
+ - gui and applications to control main processes (reconstruction, data transfert...) and execute them as a stand alone application.
194
+ - an orange add-on to help users defining their own workflow (http://orange.biolab.si)
195
+
196
+
197
+
198
+ .. image:: http://www.edna-site.org/pub/doc/tomwer/extra/tomwer_start_short.gif
199
+
200
+
201
+ .. |Gitlab Status| image:: https://gitlab.esrf.fr/tomotools/tomwer/badges/master/pipeline.svg
202
+ :target: https://gitlab.esrf.fr/tomotools/tomwer/pipelines
203
+
204
+
205
+ Documentation
206
+ -------------
207
+
208
+ `Latest documentation <https://tomotools.gitlab-pages.esrf.fr/tomwer/>`_
209
+
210
+
211
+ Installation
212
+ ------------
213
+
214
+ Step 1 - tomwer
215
+ '''''''''''''''
216
+
217
+ To install it with all 'features':
218
+
219
+ .. code-block:: bash
220
+
221
+ pip install tomwer[full]
222
+
223
+ alternatively you can install the master branch from
224
+
225
+ .. code-block:: bash
226
+
227
+ pip install git+https://gitlab.esrf.fr/tomotools/tomwer/#egg=tomwer[full]
228
+
229
+
230
+ Step 2 - update orange-canvas-core and orange-widget-base (Optional)
231
+ ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
232
+
233
+ To access 'processing' wheels and 'reprocess action' you might want to install forks of update orange-canvas-core and orange-widget-base. This is optional and projects works with native orange projects
234
+
235
+ .. code-block:: bash
236
+
237
+ pip install git+https://github.com/payno/orange-canvas-core --no-deps --upgrade
238
+ pip install git+https://github.com/payno/orange-widget-base --no-deps --upgrade
239
+
240
+
241
+ Launching applications
242
+ ::::::::::::::::::::::
243
+
244
+ After the installation tomwer is embedding several applications.
245
+
246
+ Those applications can be launched by calling:
247
+
248
+ .. code-block:: bash
249
+
250
+ tomwer appName {options}
251
+
252
+ .. note:: if you only call `tomwer` then the man page will be displayed.
253
+
254
+ .. note:: You can access each application help using ``
255
+
256
+ .. code-block:: bash
257
+
258
+ tomwer appName --help
259
+
260
+
261
+ tomwer canvas - orange canvas
262
+ '''''''''''''''''''''''''''''
263
+
264
+ You can launch the canvas to create workflows from the different 'bricks'
265
+
266
+ .. code-block:: bash
267
+
268
+ tomwer canvas
269
+
270
+ .. note:: you can also use `orange-canvas`
271
+
272
+ .. note:: if your installed a virtual environment do not forget to active it :
273
+
274
+ .. code-block:: bash
275
+
276
+ source myvirtualenv/bin/activate
277
+
278
+
279
+ Documentation
280
+ :::::::::::::
281
+
282
+ .. code-block:: bash
283
+
284
+ sphinx-build doc build/html
285
+
286
+ The documentation is build in doc/build/html and the entry point is index.html
287
+
288
+ .. code-block:: bash
289
+
290
+ firefox build/html/index.html
291
+
292
+ .. note:: the build of the documentation need sphinx to be installed. This is not an hard dependacy. So you might need to install it.
@@ -1,4 +1,4 @@
1
- tomwer-1.3.26-py3.11-nspkg.pth,sha256=UYCZtLWueceGiAlmXKRJUZ0TWQEubpPoQ1pVnAAsME0,502
1
+ tomwer-1.3.28-py3.11-nspkg.pth,sha256=UYCZtLWueceGiAlmXKRJUZ0TWQEubpPoQ1pVnAAsME0,502
2
2
  orangecontrib/tomwer/__init__.py,sha256=B4DXy1gY_wXmNYa2aOfapmJb2mEuCAjoaNEGnpBs70g,148
3
3
  orangecontrib/tomwer/state_summary.py,sha256=5_dPzweL3r0ye4ZfJo6IV2ThJI8fQhWoO2ySdJJajj8,1711
4
4
  orangecontrib/tomwer/orange/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -220,7 +220,7 @@ orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg,sha256=2uT9_px
220
220
  tomwer/__init__.py,sha256=82Jp1abyG4UWdGuT4nNU7LxaUV6xxkOte5pIz3w69Do,1745
221
221
  tomwer/__main__.py,sha256=jsDfWA2yl5am0dHQVkYwlKLxxqKNont6VDF-LusuawE,8575
222
222
  tomwer/utils.py,sha256=o6TW9xqGYyYLHUGvLiiYEiiDHP6lwWlX63jMLPNh374,8432
223
- tomwer/version.py,sha256=dGf-wqIBSTPrgdjFzPNBiPqCVKb80q-diVY9tPTHZag,4387
223
+ tomwer/version.py,sha256=lJKHr7pB-eWHQq9GxeQxeGRD-EJLvSCj_icWaFvGd_s,4387
224
224
  tomwer/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
225
  tomwer/app/axis.py,sha256=Ax0wlTp9u0Ll_3ax23QP5Ck16_M9Kop7wx0hAbXrXyM,6004
226
226
  tomwer/app/canvas.py,sha256=RbQqgE7DuNjv4nGG6BNfnSevQO5_lCl7N71hGcLoxwE,1561
@@ -266,7 +266,7 @@ tomwer/core/process/output.py,sha256=UmOczI3GYNXm79B_1B3DInrXZqerhMF98Hru4KcgP1o
266
266
  tomwer/core/process/task.py,sha256=ONb5EpuDVMtt0JNcakYnsMbvW8aKKvxhooAeBIvNtGs,15733
267
267
  tomwer/core/process/utils.py,sha256=LIzKwucEq6IqQ7L8L70UgDBaE9F29h_gjipQsa1RFo8,4010
268
268
  tomwer/core/process/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
269
- tomwer/core/process/cluster/supervisor.py,sha256=sStffXsjWEYaAF0yL03igtLflRnmr3zJzHRWGidwHas,1755
269
+ tomwer/core/process/cluster/supervisor.py,sha256=WEfZl57z_4jUl6BMGj8P5YTLxReCY1pHwCeg5UThKGo,1752
270
270
  tomwer/core/process/conditions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
271
271
  tomwer/core/process/conditions/filters.py,sha256=UwC0R4zQXY0y65hI4tOE_o2azVq5gypj_8NFSCqUNfk,7156
272
272
  tomwer/core/process/control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -285,9 +285,9 @@ tomwer/core/process/control/volumeselector.py,sha256=0uv1Q8k5Ms1h_iU-ldhb-Y35xsy
285
285
  tomwer/core/process/control/volumesymlink.py,sha256=lcHS5eJv5lr72BAXrTe0QfwQw8amXIu0lPRsPdL6o_o,7626
286
286
  tomwer/core/process/control/datalistener/__init__.py,sha256=gSEeJEDX8E-8HzY7tmPc32QKfqSZHG4Ad06IxDrzOWo,52
287
287
  tomwer/core/process/control/datalistener/datalistener.py,sha256=jJALoA6YEhxVokiST9Aoc68ex6wuKObZBUis3VmO2eM,22157
288
- tomwer/core/process/control/datalistener/rpcserver.py,sha256=BAIpBqovcxr5R-F144uvAYYUVgqSiXeDRYuw-ZeVgF8,11104
288
+ tomwer/core/process/control/datalistener/rpcserver.py,sha256=zN3hS6S3y7orw0bNXYuLw1xZP_PmtPW4_9SNWimNQaU,11090
289
289
  tomwer/core/process/control/datawatcher/__init__.py,sha256=F9d_bGOr5iAPEfnKaf5XOEwQSR1wZp_wkzcDYNSuin4,50
290
- tomwer/core/process/control/datawatcher/datawatcher.py,sha256=oU0nBmn_-cv_f8r-dTQM4I8QT5XPxLuQ6s4yLkf_PEk,16822
290
+ tomwer/core/process/control/datawatcher/datawatcher.py,sha256=xG7hTl0pHFYGbT1OgoRH_2NQTB0qhvgHmbXSg0lIu8w,16819
291
291
  tomwer/core/process/control/datawatcher/datawatcherobserver.py,sha256=wgmIMpPZv3AX6HxSNkaIGGFPmqYz8DshvLkFeWh9XRM,25752
292
292
  tomwer/core/process/control/datawatcher/datawatcherprocess.py,sha256=7jmHizBYV6NGbT63pQPAS7V5Zk8OydikbdFNMYzFIiE,9450
293
293
  tomwer/core/process/control/datawatcher/edfdwprocess.py,sha256=Bjp0YHPfrCS2NZmcX_oFkaqsH2jxouR7OCz2YjGhOK8,7024
@@ -306,13 +306,13 @@ tomwer/core/process/icat/createscreenshots.py,sha256=JeAhnaeqJSa51ssrzXQUJFh37cL
306
306
  tomwer/core/process/icat/gallery.py,sha256=c_6-KU213bFOK3jKXOVkroGfL0ppzY9o7nFdZHN8ws0,14813
307
307
  tomwer/core/process/icat/icatbase.py,sha256=pNokee8Zbhkyq9tV8Ql6UGZ8CyoFaP7lUhq4qVoBKis,1066
308
308
  tomwer/core/process/icat/publish.py,sha256=kmPYdGR9TMoXR43frxZdNnYY-O5iJYE9n526ZCysXWw,7828
309
- tomwer/core/process/icat/screenshots.py,sha256=OaXq_WFAdC_fuAj8qpHXUnkvexMyZnqcabJqNoive6k,816
309
+ tomwer/core/process/icat/screenshots.py,sha256=Hv9qAduDQ69N8J_GtmNBEn3Dwf3PMjYXtdBDyJ5MRw0,815
310
310
  tomwer/core/process/reconstruction/__init__.py,sha256=EgySFx4vfoPre5NwYZbKoWSMx-3lBYXWlAI-b-ttRu4,1504
311
311
  tomwer/core/process/reconstruction/output.py,sha256=JxtQ-ky2rPjTet2kYtIlzqnfj9E7BhZh3NaWOosobE0,3967
312
312
  tomwer/core/process/reconstruction/paramsbase.py,sha256=YhCqZwZCM632WdLlLHJVEwBHnXwbBf7CoLA3jESxOFE,7725
313
313
  tomwer/core/process/reconstruction/axis/__init__.py,sha256=VSQkN6M6JvM_c55OiboNyJUW8Zs1wkkQgv1JYmzvIr8,80
314
314
  tomwer/core/process/reconstruction/axis/anglemode.py,sha256=sOkuTqO8sR8xd_tEwZHj-o1TA1z33AmwwZbrPnuYqmI,1896
315
- tomwer/core/process/reconstruction/axis/axis.py,sha256=nkBkDjB5yGkxRNWtjnFrixwOE_qCx5iNloIpWEZne3M,42723
315
+ tomwer/core/process/reconstruction/axis/axis.py,sha256=KYhHltMGwrDAo3x1S01akwaj8RCHr4_9c9H_k8gJKE8,42722
316
316
  tomwer/core/process/reconstruction/axis/mode.py,sha256=CvYf-Mat3Vc6Ki1RSUQl4_Z02OKdmXUmpknnLmUgz5k,6750
317
317
  tomwer/core/process/reconstruction/axis/params.py,sha256=If_WYx8FZUxMeqMclUj_QfMMT1NVI-H1U5NAvem9VzI,33184
318
318
  tomwer/core/process/reconstruction/axis/projectiontype.py,sha256=0w_NZ0N95iInHuEQCIxJIxt7K-YpCUo2fZ-_vhZ6D7Q,1543
@@ -322,9 +322,9 @@ tomwer/core/process/reconstruction/darkref/darkrefscopy.py,sha256=Oe65TZUS0XZ-5I
322
322
  tomwer/core/process/reconstruction/darkref/params.py,sha256=Pnl8XJ4et-u169wzUdhB8_woBEXPXtrGPLZEbXSwZDQ,10080
323
323
  tomwer/core/process/reconstruction/darkref/settings.py,sha256=35jliuOIjMKTOJjgn4uiotcDEr6RskpLHfRWWLm76dc,188
324
324
  tomwer/core/process/reconstruction/nabu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
325
- tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=qk5bNGcPXylEXfHE3eB6gIh2_Bh-ehtq4Z1Ok8hXd5s,10239
325
+ tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=cu6nhWE7s-vlGSpztqruQGzoOmMyXYHxI31MmWZ-jno,10244
326
326
  tomwer/core/process/reconstruction/nabu/helical.py,sha256=gauUkoPiShvnvMQrCQXv28g0yLe-GceML5kYMSXmNIg,1997
327
- tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=3OyyDjBfdrEF4ctXo6LBH-WeyrKh24j6sJUocA7TwXw,24428
327
+ tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=OcMeqo6SAqhnD2PtSeeUlN316UJ1S1KailC3Toxr0Q4,24427
328
328
  tomwer/core/process/reconstruction/nabu/nabuscores.py,sha256=fn4gUvw6Cl3jl7WI5R_HATYjhd1y5ctt1MkOhWq6VOM,25733
329
329
  tomwer/core/process/reconstruction/nabu/nabuslices.py,sha256=ErNsrXWJ0cpXKL1DHDi7PC6Xulz_iJ-9r2QFhH5s_zU,36816
330
330
  tomwer/core/process/reconstruction/nabu/nabuvolume.py,sha256=z7nyfXhMrp0Q3hAN3NYw5rvvjdgU-ZQQ7kMD3bEiFcU,21916
@@ -337,10 +337,10 @@ tomwer/core/process/reconstruction/normalization/normalization.py,sha256=G-eAZIc
337
337
  tomwer/core/process/reconstruction/normalization/params.py,sha256=porWC6G5lQWF-4JB03B56uGmuMxjx3u0ZMums-Bh2p8,4790
338
338
  tomwer/core/process/reconstruction/saaxis/__init__.py,sha256=ZEOu0nZWlMyBoX_A64yeEjVflE5x4iWSpYLTgs45g0o,137
339
339
  tomwer/core/process/reconstruction/saaxis/params.py,sha256=dvBHxfSs3ffUk22drLAlcmAJJhaC42qV9aW45kC1ITA,5583
340
- tomwer/core/process/reconstruction/saaxis/saaxis.py,sha256=uTkARtWJchEkPqPRI2Aqicb6oaA0z4QCtZS9tj444A8,32085
340
+ tomwer/core/process/reconstruction/saaxis/saaxis.py,sha256=YE5Q-0q6x7vPEl9hu8kn2A9NwCsxQ_CzmvnjWcK9p9k,32084
341
341
  tomwer/core/process/reconstruction/sadeltabeta/__init__.py,sha256=WDYJxfqPnz5IeLPCX5W8UEO8-Z-NSH79gkqp2DZn1bM,162
342
342
  tomwer/core/process/reconstruction/sadeltabeta/params.py,sha256=4UrLpA-6Wwfof9Jl1fcGTd5wrDzDB86GX4vo_PEgj74,4043
343
- tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py,sha256=E1FLnZ6d54IXlt6Rjgrco1ca1eMzFlcYa_mqCf8Pfgw,31025
343
+ tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py,sha256=jNBYtktH25rc4r8F8YDQRVHVSS_GaVYkDE0Pam6Asoc,31024
344
344
  tomwer/core/process/reconstruction/scores/__init__.py,sha256=aTWranL8RRGSMKOSDkkjhaqWisgZdP9Xgx7GoFhLwJo,282
345
345
  tomwer/core/process/reconstruction/scores/params.py,sha256=kk6prt2sLMe8p-vvgGyKRM6KMCG0XuwyhNvAlp9KuGs,7564
346
346
  tomwer/core/process/reconstruction/scores/scores.py,sha256=pb60Pt7p_8O9XZtcT0MH_TwVSNEzJFkTl_K3o5fJCgE,7383
@@ -387,7 +387,7 @@ tomwer/core/scan/hdf5scan.py,sha256=P7LHxyqY9Ujg19MpYVItarKxFEy2Z_PVTh5Hi3PCXyU,
387
387
  tomwer/core/scan/helicalmetadata.py,sha256=JRBxqHkyTe5f3FDlbIeDfN31P6Ms48SqGiFRXHuZ8sw,472
388
388
  tomwer/core/scan/nxtomoscan.py,sha256=WJEO_hQTcMhgALI5KaSIQy8bGsLEeX2Po0ArUdxlqA0,19405
389
389
  tomwer/core/scan/scanbase.py,sha256=PSPeGM6mI6EacE_VUWLTUGcjhdJnY6ZpR_I4qHSHmIc,32052
390
- tomwer/core/scan/scanfactory.py,sha256=Ltisxo9B8j11lS_cdwUjuEH1ZjPb9nmU2KmkXxzU98I,10521
390
+ tomwer/core/scan/scanfactory.py,sha256=_UdS2V4E9OtPdSH6Dxjf0-bfpazwX5--EY9MzTSCyak,10522
391
391
  tomwer/core/scan/scantype.py,sha256=pQjWuCy_014uK5cdb8pFAkE_EPHJvPdSo3NM8aWTo58,137
392
392
  tomwer/core/scan/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
393
393
  tomwer/core/scan/test/test_edf.py,sha256=Z-Vc_fxfFvItBcDVHzKXEj_x1cUs79OyChdRPV_OIsc,2210
@@ -553,7 +553,7 @@ tomwer/gui/stitching/axisorderedlist.py,sha256=w74JrsazMtcrviSPRov61Yd2JguHgNRj9
553
553
  tomwer/gui/stitching/metadataholder.py,sha256=jeR6_DM529aEmxQLeLM3CB-49GHq6KLY2Nc24kSC-HA,913
554
554
  tomwer/gui/stitching/normalization.py,sha256=EuHyoMcjcOnqO7_gepvcjiQx3DBkSZhsNApOiG-o3yM,4454
555
555
  tomwer/gui/stitching/stitchandbackground.py,sha256=0qavlnjKLCf5VcQn6KPHdQxTUG6s2dpW-pSbuJulEa8,5982
556
- tomwer/gui/stitching/stitching.py,sha256=q_KmbJMejAjwYV1jojT1zBUuSw2vSocGO7qy0uJBb8Y,57075
556
+ tomwer/gui/stitching/stitching.py,sha256=UdY4kI8SmCSUuoSWGYndLwILIM7mS0TbZCmUi2xxHkA,56966
557
557
  tomwer/gui/stitching/stitching_preview.py,sha256=DYkGXw7Tolef6GkmzfDLCbv-f9v92pHUi4K7T-aTokQ,9669
558
558
  tomwer/gui/stitching/stitching_raw.py,sha256=eRCWpBa6scTe1FeSyvMK-3pepx-G-cg1EWEXQzotvhk,22353
559
559
  tomwer/gui/stitching/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -577,7 +577,7 @@ tomwer/gui/utils/qt_utils.py,sha256=vIBwiYeHhb55P-3HuGlHKL8s4o8AByyXQTl0Qi5-3CY,
577
577
  tomwer/gui/utils/sandboxes.py,sha256=KsWDEZuz7nwUx8ZZUmKTzljIyErzcWEP6tVokFhFHSQ,7460
578
578
  tomwer/gui/utils/scandescription.py,sha256=4kAyYfqT5MP6-fkAW8S60gJ-DrLFETbs1k8xJLyeVbw,3373
579
579
  tomwer/gui/utils/scrollarea.py,sha256=TDWSb_xsqX1vWaeWYl-yNB_-ok5QkYs9bjIOm2vL1qk,2954
580
- tomwer/gui/utils/slider.py,sha256=3DGct9QN-v-68t49hTEkkq7QcMANpTxpW-DVSsLfPKU,3482
580
+ tomwer/gui/utils/slider.py,sha256=ZxGv2_HTb0CJ491UvelUg87n-nlJ5MIpZHaMoiExOrE,3481
581
581
  tomwer/gui/utils/splashscreen.py,sha256=3LpQbJR3rczNjXFTXM3CnWQitVG1AxAlbdzCmDURpUI,1857
582
582
  tomwer/gui/utils/step.py,sha256=eH1_-yIBodtRUu9F-VemTPv6tcK_cQXa5cWiE6uWODE,5343
583
583
  tomwer/gui/utils/unitsystem.py,sha256=SmK3SwqB81UpZ8tSKal125mU24tJRasFpnDyBxtSdRA,8117
@@ -776,10 +776,10 @@ tomwer/tests/test_utils.py,sha256=D0rNDSK6csEOYBY_7gD-4A3jp8rYAm8L1_Xg34A9I2s,30
776
776
  tomwer/tests/utils.py,sha256=RAXx5A99WD4Vyuv_wjHBdr-Xu7UiThHRKw2eiB5GX10,107
777
777
  tomwer/third_part/WaitingOverlay.py,sha256=GnqiytcJDp_24Cmz_2nZAP5HfpL3Yh7AzR2ATIusGsg,3906
778
778
  tomwer/third_part/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
779
- tomwer-1.3.26.dist-info/LICENSE,sha256=yR_hIZ1MfDh9x2_s23uFqBH7m5DgrBl9nJKkE37YChM,1877
780
- tomwer-1.3.26.dist-info/METADATA,sha256=UE-r3hnDwi8j0un_WM9mkHMalBBNdWXn9GG5aCqjr2Y,10723
781
- tomwer-1.3.26.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
782
- tomwer-1.3.26.dist-info/entry_points.txt,sha256=fIcDnCxjgwzfIylLYhUsFyiNZjZMxsfRQBxi4f-cJg8,440
783
- tomwer-1.3.26.dist-info/namespace_packages.txt,sha256=Iut-JTfT11SZHHm77_ZeszD7pZDWXcTweCbvrJpqDyQ,14
784
- tomwer-1.3.26.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
785
- tomwer-1.3.26.dist-info/RECORD,,
779
+ tomwer-1.3.28.dist-info/LICENSE,sha256=yR_hIZ1MfDh9x2_s23uFqBH7m5DgrBl9nJKkE37YChM,1877
780
+ tomwer-1.3.28.dist-info/METADATA,sha256=4HCmraiDD1_3h1o9eBiFeablh3hkjS9j_GT-a06lDI4,10553
781
+ tomwer-1.3.28.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
782
+ tomwer-1.3.28.dist-info/entry_points.txt,sha256=fIcDnCxjgwzfIylLYhUsFyiNZjZMxsfRQBxi4f-cJg8,440
783
+ tomwer-1.3.28.dist-info/namespace_packages.txt,sha256=Iut-JTfT11SZHHm77_ZeszD7pZDWXcTweCbvrJpqDyQ,14
784
+ tomwer-1.3.28.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
785
+ tomwer-1.3.28.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.5.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,292 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: tomwer
3
- Version: 1.3.26
4
- Summary: "tomography workflow tools"
5
- Home-page: https://gitlab.esrf.fr/tomotools/tomwer
6
- Author: data analysis unit
7
- Author-email: henri.payno@esrf.fr
8
- License: MIT
9
- Project-URL: Bug Tracker, https://gitlab.esrf.fr/tomotools/tomwer/-/issues
10
- Keywords: orange3 add-on,ewoks
11
- Classifier: Intended Audience :: Education
12
- Classifier: Intended Audience :: Science/Research
13
- Classifier: License :: OSI Approved :: MIT License
14
- Classifier: Programming Language :: Python :: 3
15
- Classifier: Environment :: Console
16
- Classifier: Environment :: X11 Applications :: Qt
17
- Classifier: Operating System :: POSIX
18
- Classifier: Natural Language :: English
19
- Classifier: Topic :: Scientific/Engineering :: Physics
20
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
- Requires-Python: >=3.8
22
- Description-Content-Type: text/x-rst
23
- License-File: LICENSE
24
- Requires-Dist: numpy
25
- Requires-Dist: setuptools
26
- Requires-Dist: psutil
27
- Requires-Dist: silx[full] >=2.0
28
- Requires-Dist: tomoscan <2.1,>=2.0.0a11
29
- Requires-Dist: nxtomo <1.3,>=1.2.3rc1
30
- Requires-Dist: nxtomomill <1.1,>=1.0dev
31
- Requires-Dist: processview >=1.3
32
- Requires-Dist: ewoks >=0.1.1
33
- Requires-Dist: ewoksorange <0.7,>=0.6
34
- Requires-Dist: sluurp >=0.3.3
35
- Requires-Dist: packaging
36
- Requires-Dist: flufl-lock
37
- Requires-Dist: pyunitsystem <2.0,>=1.1.0
38
- Provides-Extra: dev
39
- Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'dev'
40
- Requires-Dist: rsyncmanager ; extra == 'dev'
41
- Requires-Dist: graypy ; extra == 'dev'
42
- Requires-Dist: fabio ; extra == 'dev'
43
- Requires-Dist: h5py >=3 ; extra == 'dev'
44
- Requires-Dist: lxml ; extra == 'dev'
45
- Requires-Dist: werkzeug ; extra == 'dev'
46
- Requires-Dist: json-rpc ; extra == 'dev'
47
- Requires-Dist: scipy ; extra == 'dev'
48
- Requires-Dist: Pillow ; extra == 'dev'
49
- Requires-Dist: glymur ; extra == 'dev'
50
- Requires-Dist: resource ; extra == 'dev'
51
- Requires-Dist: tifffile ; extra == 'dev'
52
- Requires-Dist: hdf5plugin ; extra == 'dev'
53
- Requires-Dist: pyicat-plus ; extra == 'dev'
54
- Requires-Dist: nabu[full] >=2023.3.1dev ; extra == 'dev'
55
- Requires-Dist: pycuda <2024.1.1 ; extra == 'dev'
56
- Requires-Dist: scikit-cuda ; extra == 'dev'
57
- Requires-Dist: black ; extra == 'dev'
58
- Requires-Dist: flake8 ; extra == 'dev'
59
- Requires-Dist: timeout-decorator ; extra == 'dev'
60
- Requires-Dist: pyopencl ; extra == 'dev'
61
- Provides-Extra: dev_no_cuda
62
- Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'dev_no_cuda'
63
- Requires-Dist: rsyncmanager ; extra == 'dev_no_cuda'
64
- Requires-Dist: graypy ; extra == 'dev_no_cuda'
65
- Requires-Dist: fabio ; extra == 'dev_no_cuda'
66
- Requires-Dist: h5py >=3 ; extra == 'dev_no_cuda'
67
- Requires-Dist: lxml ; extra == 'dev_no_cuda'
68
- Requires-Dist: werkzeug ; extra == 'dev_no_cuda'
69
- Requires-Dist: json-rpc ; extra == 'dev_no_cuda'
70
- Requires-Dist: scipy ; extra == 'dev_no_cuda'
71
- Requires-Dist: Pillow ; extra == 'dev_no_cuda'
72
- Requires-Dist: glymur ; extra == 'dev_no_cuda'
73
- Requires-Dist: resource ; extra == 'dev_no_cuda'
74
- Requires-Dist: tifffile ; extra == 'dev_no_cuda'
75
- Requires-Dist: hdf5plugin ; extra == 'dev_no_cuda'
76
- Requires-Dist: pyicat-plus ; extra == 'dev_no_cuda'
77
- Requires-Dist: nabu <2024.2,>=2023.3.1dev ; extra == 'dev_no_cuda'
78
- Requires-Dist: black ; extra == 'dev_no_cuda'
79
- Requires-Dist: flake8 ; extra == 'dev_no_cuda'
80
- Requires-Dist: timeout-decorator ; extra == 'dev_no_cuda'
81
- Requires-Dist: pyopencl ; extra == 'dev_no_cuda'
82
- Provides-Extra: dev_spec
83
- Requires-Dist: black ; extra == 'dev_spec'
84
- Requires-Dist: flake8 ; extra == 'dev_spec'
85
- Requires-Dist: timeout-decorator ; extra == 'dev_spec'
86
- Requires-Dist: pyopencl ; extra == 'dev_spec'
87
- Provides-Extra: doc
88
- Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'doc'
89
- Requires-Dist: rsyncmanager ; extra == 'doc'
90
- Requires-Dist: graypy ; extra == 'doc'
91
- Requires-Dist: fabio ; extra == 'doc'
92
- Requires-Dist: h5py >=3 ; extra == 'doc'
93
- Requires-Dist: lxml ; extra == 'doc'
94
- Requires-Dist: werkzeug ; extra == 'doc'
95
- Requires-Dist: json-rpc ; extra == 'doc'
96
- Requires-Dist: scipy ; extra == 'doc'
97
- Requires-Dist: Pillow ; extra == 'doc'
98
- Requires-Dist: glymur ; extra == 'doc'
99
- Requires-Dist: resource ; extra == 'doc'
100
- Requires-Dist: tifffile ; extra == 'doc'
101
- Requires-Dist: hdf5plugin ; extra == 'doc'
102
- Requires-Dist: pyicat-plus ; extra == 'doc'
103
- Requires-Dist: nabu <2024.2,>=2023.3.1dev ; extra == 'doc'
104
- Requires-Dist: Sphinx >=4.0.0 ; extra == 'doc'
105
- Requires-Dist: nbsphinx ; extra == 'doc'
106
- Requires-Dist: pandoc ; extra == 'doc'
107
- Requires-Dist: jupyterlab ; extra == 'doc'
108
- Requires-Dist: pydata-sphinx-theme ; extra == 'doc'
109
- Requires-Dist: sphinx-design ; extra == 'doc'
110
- Requires-Dist: sphinx-autodoc-typehints ; extra == 'doc'
111
- Provides-Extra: full
112
- Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'full'
113
- Requires-Dist: rsyncmanager ; extra == 'full'
114
- Requires-Dist: graypy ; extra == 'full'
115
- Requires-Dist: fabio ; extra == 'full'
116
- Requires-Dist: h5py >=3 ; extra == 'full'
117
- Requires-Dist: lxml ; extra == 'full'
118
- Requires-Dist: werkzeug ; extra == 'full'
119
- Requires-Dist: json-rpc ; extra == 'full'
120
- Requires-Dist: scipy ; extra == 'full'
121
- Requires-Dist: Pillow ; extra == 'full'
122
- Requires-Dist: glymur ; extra == 'full'
123
- Requires-Dist: resource ; extra == 'full'
124
- Requires-Dist: tifffile ; extra == 'full'
125
- Requires-Dist: hdf5plugin ; extra == 'full'
126
- Requires-Dist: pyicat-plus ; extra == 'full'
127
- Requires-Dist: nabu[full] >=2023.3.1dev ; extra == 'full'
128
- Requires-Dist: pycuda <2024.1.1 ; extra == 'full'
129
- Requires-Dist: scikit-cuda ; extra == 'full'
130
- Provides-Extra: full_base
131
- Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'full_base'
132
- Requires-Dist: rsyncmanager ; extra == 'full_base'
133
- Requires-Dist: graypy ; extra == 'full_base'
134
- Requires-Dist: fabio ; extra == 'full_base'
135
- Requires-Dist: h5py >=3 ; extra == 'full_base'
136
- Requires-Dist: lxml ; extra == 'full_base'
137
- Requires-Dist: werkzeug ; extra == 'full_base'
138
- Requires-Dist: json-rpc ; extra == 'full_base'
139
- Requires-Dist: scipy ; extra == 'full_base'
140
- Requires-Dist: Pillow ; extra == 'full_base'
141
- Requires-Dist: glymur ; extra == 'full_base'
142
- Requires-Dist: resource ; extra == 'full_base'
143
- Requires-Dist: tifffile ; extra == 'full_base'
144
- Requires-Dist: hdf5plugin ; extra == 'full_base'
145
- Requires-Dist: pyicat-plus ; extra == 'full_base'
146
- Provides-Extra: full_no_cuda
147
- Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'full_no_cuda'
148
- Requires-Dist: rsyncmanager ; extra == 'full_no_cuda'
149
- Requires-Dist: graypy ; extra == 'full_no_cuda'
150
- Requires-Dist: fabio ; extra == 'full_no_cuda'
151
- Requires-Dist: h5py >=3 ; extra == 'full_no_cuda'
152
- Requires-Dist: lxml ; extra == 'full_no_cuda'
153
- Requires-Dist: werkzeug ; extra == 'full_no_cuda'
154
- Requires-Dist: json-rpc ; extra == 'full_no_cuda'
155
- Requires-Dist: scipy ; extra == 'full_no_cuda'
156
- Requires-Dist: Pillow ; extra == 'full_no_cuda'
157
- Requires-Dist: glymur ; extra == 'full_no_cuda'
158
- Requires-Dist: resource ; extra == 'full_no_cuda'
159
- Requires-Dist: tifffile ; extra == 'full_no_cuda'
160
- Requires-Dist: hdf5plugin ; extra == 'full_no_cuda'
161
- Requires-Dist: pyicat-plus ; extra == 'full_no_cuda'
162
- Requires-Dist: nabu <2024.2,>=2023.3.1dev ; extra == 'full_no_cuda'
163
- Provides-Extra: full_no_nabu
164
- Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'full_no_nabu'
165
- Requires-Dist: rsyncmanager ; extra == 'full_no_nabu'
166
- Requires-Dist: graypy ; extra == 'full_no_nabu'
167
- Requires-Dist: fabio ; extra == 'full_no_nabu'
168
- Requires-Dist: h5py >=3 ; extra == 'full_no_nabu'
169
- Requires-Dist: lxml ; extra == 'full_no_nabu'
170
- Requires-Dist: werkzeug ; extra == 'full_no_nabu'
171
- Requires-Dist: json-rpc ; extra == 'full_no_nabu'
172
- Requires-Dist: scipy ; extra == 'full_no_nabu'
173
- Requires-Dist: Pillow ; extra == 'full_no_nabu'
174
- Requires-Dist: glymur ; extra == 'full_no_nabu'
175
- Requires-Dist: resource ; extra == 'full_no_nabu'
176
- Requires-Dist: tifffile ; extra == 'full_no_nabu'
177
- Requires-Dist: hdf5plugin ; extra == 'full_no_nabu'
178
- Requires-Dist: pyicat-plus ; extra == 'full_no_nabu'
179
- Provides-Extra: setup_requires
180
- Requires-Dist: setuptools ; extra == 'setup_requires'
181
- Requires-Dist: numpy >=1.12 ; extra == 'setup_requires'
182
- Provides-Extra: test
183
- Requires-Dist: pytest-asyncio ; extra == 'test'
184
- Requires-Dist: tomoscan[test] >=2.0.2rc17 ; extra == 'test'
185
-
186
- tomwer
187
- ======
188
-
189
- tomwer is offering tools to automate acquisition and reconstruction processes for Tomography.
190
- It contains:
191
-
192
- - a library to access each acquisition process individually
193
- - gui and applications to control main processes (reconstruction, data transfert...) and execute them as a stand alone application.
194
- - an orange add-on to help users defining their own workflow (http://orange.biolab.si)
195
-
196
-
197
-
198
- .. image:: http://www.edna-site.org/pub/doc/tomwer/extra/tomwer_start_short.gif
199
-
200
-
201
- .. |Gitlab Status| image:: https://gitlab.esrf.fr/tomotools/tomwer/badges/master/pipeline.svg
202
- :target: https://gitlab.esrf.fr/tomotools/tomwer/pipelines
203
-
204
-
205
- Documentation
206
- -------------
207
-
208
- `Latest documentation <https://tomotools.gitlab-pages.esrf.fr/tomwer/>`_
209
-
210
-
211
- Installation
212
- ------------
213
-
214
- Step 1 - tomwer
215
- '''''''''''''''
216
-
217
- To install it with all 'features':
218
-
219
- .. code-block:: bash
220
-
221
- pip install tomwer[full]
222
-
223
- alternatively you can install the master branch from
224
-
225
- .. code-block:: bash
226
-
227
- pip install git+https://gitlab.esrf.fr/tomotools/tomwer/#egg=tomwer[full]
228
-
229
-
230
- Step 2 - update orange-canvas-core and orange-widget-base (Optional)
231
- ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
232
-
233
- To access 'processing' wheels and 'reprocess action' you might want to install forks of update orange-canvas-core and orange-widget-base. This is optional and projects works with native orange projects
234
-
235
- .. code-block:: bash
236
-
237
- pip install git+https://github.com/payno/orange-canvas-core --no-deps --upgrade
238
- pip install git+https://github.com/payno/orange-widget-base --no-deps --upgrade
239
-
240
-
241
- Launching applications
242
- ::::::::::::::::::::::
243
-
244
- After the installation tomwer is embedding several applications.
245
-
246
- Those applications can be launched by calling:
247
-
248
- .. code-block:: bash
249
-
250
- tomwer appName {options}
251
-
252
- .. note:: if you only call `tomwer` then the man page will be displayed.
253
-
254
- .. note:: You can access each application help using ``
255
-
256
- .. code-block:: bash
257
-
258
- tomwer appName --help
259
-
260
-
261
- tomwer canvas - orange canvas
262
- '''''''''''''''''''''''''''''
263
-
264
- You can launch the canvas to create workflows from the different 'bricks'
265
-
266
- .. code-block:: bash
267
-
268
- tomwer canvas
269
-
270
- .. note:: you can also use `orange-canvas`
271
-
272
- .. note:: if your installed a virtual environment do not forget to active it :
273
-
274
- .. code-block:: bash
275
-
276
- source myvirtualenv/bin/activate
277
-
278
-
279
- Documentation
280
- :::::::::::::
281
-
282
- .. code-block:: bash
283
-
284
- sphinx-build doc build/html
285
-
286
- The documentation is build in doc/build/html and the entry point is index.html
287
-
288
- .. code-block:: bash
289
-
290
- firefox build/html/index.html
291
-
292
- .. note:: the build of the documentation need sphinx to be installed. This is not an hard dependacy. So you might need to install it.