phasorpy 0.4__cp313-cp313-win_arm64.whl → 0.6__cp313-cp313-win_arm64.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.
- phasorpy/__init__.py +2 -3
- phasorpy/_phasorpy.cp313-win_arm64.pyd +0 -0
- phasorpy/_phasorpy.pyx +237 -51
- phasorpy/_utils.py +201 -7
- phasorpy/cli.py +58 -3
- phasorpy/cluster.py +206 -0
- phasorpy/color.py +16 -11
- phasorpy/components.py +240 -69
- phasorpy/conftest.py +2 -0
- phasorpy/cursors.py +9 -9
- phasorpy/datasets.py +129 -51
- phasorpy/experimental.py +312 -0
- phasorpy/io/__init__.py +137 -0
- phasorpy/io/_flimlabs.py +350 -0
- phasorpy/io/_leica.py +329 -0
- phasorpy/io/_ometiff.py +445 -0
- phasorpy/io/_other.py +782 -0
- phasorpy/io/_simfcs.py +627 -0
- phasorpy/phasor.py +572 -97
- phasorpy/plot/__init__.py +27 -0
- phasorpy/plot/_functions.py +717 -0
- phasorpy/plot/_lifetime_plots.py +553 -0
- phasorpy/plot/_phasorplot.py +1119 -0
- phasorpy/plot/_phasorplot_fret.py +559 -0
- phasorpy/utils.py +90 -297
- {phasorpy-0.4.dist-info → phasorpy-0.6.dist-info}/METADATA +11 -16
- phasorpy-0.6.dist-info/RECORD +34 -0
- {phasorpy-0.4.dist-info → phasorpy-0.6.dist-info}/WHEEL +1 -1
- phasorpy/_io.py +0 -2431
- phasorpy/io.py +0 -5
- phasorpy/plot.py +0 -2094
- phasorpy/version.py +0 -72
- phasorpy-0.4.dist-info/RECORD +0 -25
- {phasorpy-0.4.dist-info → phasorpy-0.6.dist-info}/entry_points.txt +0 -0
- {phasorpy-0.4.dist-info → phasorpy-0.6.dist-info/licenses}/LICENSE.txt +0 -0
- {phasorpy-0.4.dist-info → phasorpy-0.6.dist-info}/top_level.txt +0 -0
phasorpy/version.py
DELETED
@@ -1,72 +0,0 @@
|
|
1
|
-
"""Version information."""
|
2
|
-
|
3
|
-
from __future__ import annotations
|
4
|
-
|
5
|
-
__version__ = '0.4'
|
6
|
-
|
7
|
-
|
8
|
-
def versions(
|
9
|
-
*, sep: str = '\n', dash: str = '-', verbose: bool = False
|
10
|
-
) -> str:
|
11
|
-
"""Return versions of installed packages that phasorpy depends on.
|
12
|
-
|
13
|
-
Parameters
|
14
|
-
----------
|
15
|
-
sep : str, optional
|
16
|
-
Separator between version items. The default is a newline character.
|
17
|
-
dash : str, optional
|
18
|
-
Separator between module name and version.
|
19
|
-
verbose : bool, optional
|
20
|
-
Include paths to Python interpreter and modules.
|
21
|
-
|
22
|
-
Example
|
23
|
-
-------
|
24
|
-
>>> print(versions())
|
25
|
-
Python-3...
|
26
|
-
phasorpy-0...
|
27
|
-
numpy-...
|
28
|
-
...
|
29
|
-
|
30
|
-
"""
|
31
|
-
import os
|
32
|
-
import sys
|
33
|
-
|
34
|
-
if verbose:
|
35
|
-
version_strings = [f'Python{dash}{sys.version} ({sys.executable})']
|
36
|
-
else:
|
37
|
-
version_strings = [f'Python{dash}{sys.version.split()[0]}']
|
38
|
-
|
39
|
-
for module in (
|
40
|
-
'phasorpy',
|
41
|
-
'numpy',
|
42
|
-
'tifffile',
|
43
|
-
'imagecodecs',
|
44
|
-
'lfdfiles',
|
45
|
-
'sdtfile',
|
46
|
-
'ptufile',
|
47
|
-
'liffile',
|
48
|
-
'matplotlib',
|
49
|
-
'scipy',
|
50
|
-
'skimage',
|
51
|
-
'sklearn',
|
52
|
-
'pandas',
|
53
|
-
'xarray',
|
54
|
-
'click',
|
55
|
-
'pooch',
|
56
|
-
):
|
57
|
-
try:
|
58
|
-
__import__(module)
|
59
|
-
except ModuleNotFoundError:
|
60
|
-
version_strings.append(f'{module.lower()}{dash}n/a')
|
61
|
-
continue
|
62
|
-
lib = sys.modules[module]
|
63
|
-
ver = f"{module.lower()}{dash}{getattr(lib, '__version__', 'unknown')}"
|
64
|
-
if verbose:
|
65
|
-
try:
|
66
|
-
path = getattr(lib, '__file__')
|
67
|
-
except NameError:
|
68
|
-
pass
|
69
|
-
else:
|
70
|
-
ver += f' ({os.path.dirname(path)})'
|
71
|
-
version_strings.append(ver)
|
72
|
-
return sep.join(version_strings)
|
phasorpy-0.4.dist-info/RECORD
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
phasorpy/__init__.py,sha256=SwOTreV7wd8ZEL3waXQlgbNnsErWJ0dh6A2d77DWp0Y,254
|
2
|
-
phasorpy/__main__.py,sha256=0u6C98HYfajV1RoUww8kAc0CxdsON0ijgEyTYExCSLM,149
|
3
|
-
phasorpy/_io.py,sha256=m_GbMezQSOpaDSq_ZY3OtanDKnK7o7HIQUPjcfw5C3c,79239
|
4
|
-
phasorpy/_phasorpy.cp313-win_arm64.pyd,sha256=1Y-AuUrl5ghQM_JnQ5p_tFC6drwR4nJL8P2wjgYu93o,783872
|
5
|
-
phasorpy/_phasorpy.pyx,sha256=ukl9_qjzWy-YqnCSZj9ErMohxIObh1JG7U7U25sL-jE,63909
|
6
|
-
phasorpy/_typing.py,sha256=ii-5-8KTs2BZq0Ytu3yJl8ejSQj1V06c1_Jcwa_2Snk,1324
|
7
|
-
phasorpy/_utils.py,sha256=33KkcMssK9xnQRQMWQ5L9do4I5093FdpNrgLdRmUc7I,15128
|
8
|
-
phasorpy/cli.py,sha256=orN_31JOTzIUEfySwTo_Kr24UUzPKdA-DkemsmM8IHk,1977
|
9
|
-
phasorpy/color.py,sha256=vb0Vet_BSMz1El3aQeQWpXm-hRcARnx0qRdOUK3OkvI,17264
|
10
|
-
phasorpy/components.py,sha256=0ZuUaJllf4c2UFbiTOse5PYXkMLNF8q5VSUxvSgPjy8,10415
|
11
|
-
phasorpy/conftest.py,sha256=BywY24LnrOhaTHZIYkVAQ09JmvKZXevNKoshdLeL9nA,949
|
12
|
-
phasorpy/cursors.py,sha256=sUZ-9PJ5faJLWewRuENhF7nRJ-drPtW8Ui8YWD6UOw4,15546
|
13
|
-
phasorpy/datasets.py,sha256=PZqzvwWw18I8yYzDSG7ehRzXYoxbm9zedYscyaALzUI,18679
|
14
|
-
phasorpy/io.py,sha256=LbvRCZrn8A4ttUthTb7OYbKmYGl2c4uiGCX98ZOz494,164
|
15
|
-
phasorpy/phasor.py,sha256=FN-98HU3kMaAfHTSos2X462qn0q6GTLQWf2jNILArdU,113485
|
16
|
-
phasorpy/plot.py,sha256=M3amG2LeC5cqFyW7er-7Lqi5ZeVpnMLQXqo6fqNICr0,70431
|
17
|
-
phasorpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
|
-
phasorpy/utils.py,sha256=an_dOCZM9WCNUxI3GFuxdjrF8BRVQIc0OnQStgiXF7A,11675
|
19
|
-
phasorpy/version.py,sha256=NjmVRZIUgPJtVP7pRSDzkQUzunBbApGY1YefTbIuDzs,1820
|
20
|
-
phasorpy-0.4.dist-info/LICENSE.txt,sha256=KVzeDa0MBRSUYPFFNuo7Atn6v62TiJTgGzHigltEX0o,1104
|
21
|
-
phasorpy-0.4.dist-info/METADATA,sha256=_DzagbItN_FIcE0rahtlAp1IXIx1TyCCd5WoH5eJdf0,3563
|
22
|
-
phasorpy-0.4.dist-info/WHEEL,sha256=8fM9UDBVBwZGW1kTy_FyUxqZHRhRuIJmTQgtV8rHzvE,101
|
23
|
-
phasorpy-0.4.dist-info/entry_points.txt,sha256=VRhsl3qGiIKwtMraKapmduchTMbdReUi1AoVTe9f3ss,47
|
24
|
-
phasorpy-0.4.dist-info/top_level.txt,sha256=4Y0uYzya5R2loleAxZ6s2n53_FysUbgFTfFaU0i9rbo,9
|
25
|
-
phasorpy-0.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|