phasorpy 0.3__cp312-cp312-win_amd64.whl → 0.5__cp312-cp312-win_amd64.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/_io.py +2655 -0
- phasorpy/_phasorpy.cp312-win_amd64.pyd +0 -0
- phasorpy/_phasorpy.pyx +119 -47
- phasorpy/_utils.py +165 -18
- phasorpy/cli.py +2 -0
- phasorpy/cluster.py +170 -0
- phasorpy/color.py +17 -13
- phasorpy/components.py +18 -18
- phasorpy/conftest.py +2 -0
- phasorpy/cursors.py +9 -9
- phasorpy/datasets.py +169 -10
- phasorpy/io.py +7 -1809
- phasorpy/phasor.py +281 -100
- phasorpy/plot.py +276 -36
- phasorpy/utils.py +12 -7
- phasorpy/version.py +14 -5
- {phasorpy-0.3.dist-info → phasorpy-0.5.dist-info}/METADATA +11 -15
- phasorpy-0.5.dist-info/RECORD +26 -0
- {phasorpy-0.3.dist-info → phasorpy-0.5.dist-info}/WHEEL +1 -1
- {phasorpy-0.3.dist-info → phasorpy-0.5.dist-info/licenses}/LICENSE.txt +1 -1
- phasorpy-0.3.dist-info/RECORD +0 -24
- {phasorpy-0.3.dist-info → phasorpy-0.5.dist-info}/entry_points.txt +0 -0
- {phasorpy-0.3.dist-info → phasorpy-0.5.dist-info}/top_level.txt +0 -0
@@ -1,9 +1,9 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: phasorpy
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.5
|
4
4
|
Summary: Analysis of fluorescence lifetime and hyperspectral images using the phasor approach
|
5
5
|
Author: PhasorPy Contributors
|
6
|
-
License: MIT
|
6
|
+
License-Expression: MIT
|
7
7
|
Project-URL: Homepage, https://www.phasorpy.org
|
8
8
|
Project-URL: Documentation, https://www.phasorpy.org/docs/stable/
|
9
9
|
Project-URL: Download, https://pypi.org/project/phasorpy/#files
|
@@ -13,25 +13,24 @@ Project-URL: Release notes, https://www.phasorpy.org/docs/stable/release
|
|
13
13
|
Classifier: Development Status :: 3 - Alpha
|
14
14
|
Classifier: Intended Audience :: Developers
|
15
15
|
Classifier: Intended Audience :: Science/Research
|
16
|
-
Classifier: License :: OSI Approved :: MIT License
|
17
16
|
Classifier: Programming Language :: Python
|
18
17
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
19
18
|
Classifier: Operating System :: OS Independent
|
20
19
|
Classifier: Programming Language :: Python :: 3
|
21
20
|
Classifier: Programming Language :: Python :: 3 :: Only
|
22
|
-
Classifier: Programming Language :: Python :: 3.10
|
23
21
|
Classifier: Programming Language :: Python :: 3.11
|
24
22
|
Classifier: Programming Language :: Python :: 3.12
|
25
23
|
Classifier: Programming Language :: Python :: 3.13
|
26
|
-
Requires-Python: >=3.
|
24
|
+
Requires-Python: >=3.11
|
27
25
|
Description-Content-Type: text/markdown
|
28
26
|
License-File: LICENSE.txt
|
29
|
-
Requires-Dist: numpy>=1.
|
30
|
-
Requires-Dist: matplotlib>=3.
|
27
|
+
Requires-Dist: numpy>=1.25.0
|
28
|
+
Requires-Dist: matplotlib>=3.8.0
|
31
29
|
Requires-Dist: scipy>=1.11.0
|
32
30
|
Requires-Dist: click
|
33
31
|
Requires-Dist: pooch
|
34
32
|
Requires-Dist: tqdm
|
33
|
+
Requires-Dist: scikit-learn>=1.5.0
|
35
34
|
Requires-Dist: xarray>=2023.4.0
|
36
35
|
Requires-Dist: tifffile>=2024.8.30
|
37
36
|
Provides-Extra: docs
|
@@ -42,16 +41,13 @@ Requires-Dist: sphinx-copybutton; extra == "docs"
|
|
42
41
|
Requires-Dist: sphinx_click; extra == "docs"
|
43
42
|
Requires-Dist: pydata-sphinx-theme>=0.16.0; extra == "docs"
|
44
43
|
Requires-Dist: numpydoc; extra == "docs"
|
45
|
-
Provides-Extra: test
|
46
|
-
Requires-Dist: pytest; extra == "test"
|
47
|
-
Requires-Dist: pytest-cov; extra == "test"
|
48
|
-
Requires-Dist: pytest-runner; extra == "test"
|
49
|
-
Requires-Dist: pytest-doctestplus; extra == "test"
|
50
|
-
Requires-Dist: coverage; extra == "test"
|
51
44
|
Provides-Extra: all
|
52
45
|
Requires-Dist: lfdfiles>=2024.5.24; extra == "all"
|
53
46
|
Requires-Dist: sdtfile>=2024.5.24; extra == "all"
|
54
47
|
Requires-Dist: ptufile>=2024.9.14; extra == "all"
|
48
|
+
Requires-Dist: liffile>=2025.2.10; extra == "all"
|
49
|
+
Requires-Dist: pawflim; extra == "all"
|
50
|
+
Dynamic: license-file
|
55
51
|
|
56
52
|
# PhasorPy
|
57
53
|
|
@@ -61,7 +57,7 @@ lifetime and hyperspectral images using the phasor approach.
|
|
61
57
|
- [Homepage](https://www.phasorpy.org)
|
62
58
|
- [Documentation](https://www.phasorpy.org/docs/stable/)
|
63
59
|
- [Source code](https://github.com/phasorpy/phasorpy)
|
64
|
-
- [
|
60
|
+
- [Install with pip](https://pypi.org/project/phasorpy/) or [conda](https://anaconda.org/conda-forge/phasorpy).
|
65
61
|
- [Data files](https://zenodo.org/communities/phasorpy/)
|
66
62
|
- [Issues and questions](https://github.com/phasorpy/phasorpy/issues)
|
67
63
|
|
@@ -0,0 +1,26 @@
|
|
1
|
+
phasorpy/__init__.py,sha256=SwOTreV7wd8ZEL3waXQlgbNnsErWJ0dh6A2d77DWp0Y,254
|
2
|
+
phasorpy/__main__.py,sha256=0u6C98HYfajV1RoUww8kAc0CxdsON0ijgEyTYExCSLM,149
|
3
|
+
phasorpy/_io.py,sha256=iT6yzCCbzW3R5OvN2aDuGgfAhfzTXQDOIyRCNnSxdnA,86658
|
4
|
+
phasorpy/_phasorpy.cp312-win_amd64.pyd,sha256=CJFs-xKg-gDE607hx4CkroBTfPx3_zFPDa5xLrenyb4,899072
|
5
|
+
phasorpy/_phasorpy.pyx,sha256=0miKMEcc1dsohc252uTFiEWUdthzwx7jNVLDuQKZGPY,64124
|
6
|
+
phasorpy/_typing.py,sha256=ii-5-8KTs2BZq0Ytu3yJl8ejSQj1V06c1_Jcwa_2Snk,1324
|
7
|
+
phasorpy/_utils.py,sha256=5x3mDxabSBq52aO1hUkeIVsqBsoBfs5FEcCLB0aFZgU,17401
|
8
|
+
phasorpy/cli.py,sha256=_p0NYuA3EYgz5OI3Jvpo0G48UO6hhMuo5nHOTMUO74o,2004
|
9
|
+
phasorpy/cluster.py,sha256=Ai3jrBKTwL0VJ0T61NL_FPB88Xgo7YVP1c-FLSKmUs0,5001
|
10
|
+
phasorpy/color.py,sha256=Y0XINGWDI5DxTUO9FnwYbf3oZq9IB2XagoJOdXhEsvQ,17378
|
11
|
+
phasorpy/components.py,sha256=qIZ91o22Dua0Dx189t-UGkO2AEQD296INTAUHYoomtA,10455
|
12
|
+
phasorpy/conftest.py,sha256=0dCO8UZtEnhZv-JW1_vGvPZOmaihRLOo_Wc857socWI,976
|
13
|
+
phasorpy/cursors.py,sha256=1KzsfZBD-kKLdjiMUC3ZIKjSnVtnUwggVlt883EmcRo,15571
|
14
|
+
phasorpy/datasets.py,sha256=EggCWJnpHIHuobRV7aEBNM44B79hMzInNA_lEnMZum8,20870
|
15
|
+
phasorpy/io.py,sha256=xvQD8xGYCxp6LRFRTDguMUeXFSUG29knNd3HPWkTyjg,237
|
16
|
+
phasorpy/phasor.py,sha256=NeFmuYEvg9YMlL83sLkhKLO6IJepP5uZsc6BRCYRpuQ,119885
|
17
|
+
phasorpy/plot.py,sha256=Jkdwjubhm8rKQuraESW0Sn6tHHxGyryjDBj5n85oTyw,77423
|
18
|
+
phasorpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
+
phasorpy/utils.py,sha256=lBvYpS3WNLIjYcZ2kv1X6V5rFT3zNBqGsnJMEGqay1M,11770
|
20
|
+
phasorpy/version.py,sha256=pz2RAbZKrk1cd3jzmZ4lQOry9UzcBMxBO_WGjVpK360,2053
|
21
|
+
phasorpy-0.5.dist-info/licenses/LICENSE.txt,sha256=KVzeDa0MBRSUYPFFNuo7Atn6v62TiJTgGzHigltEX0o,1104
|
22
|
+
phasorpy-0.5.dist-info/METADATA,sha256=ULBHKOkw7nFpSd-M9_xUlHUEHJb3_jaTgdaqN8x6W6o,3322
|
23
|
+
phasorpy-0.5.dist-info/WHEEL,sha256=ovhA9_Ei_7ok2fAych90j-feDV4goiAxbO7REePtvw0,101
|
24
|
+
phasorpy-0.5.dist-info/entry_points.txt,sha256=VRhsl3qGiIKwtMraKapmduchTMbdReUi1AoVTe9f3ss,47
|
25
|
+
phasorpy-0.5.dist-info/top_level.txt,sha256=4Y0uYzya5R2loleAxZ6s2n53_FysUbgFTfFaU0i9rbo,9
|
26
|
+
phasorpy-0.5.dist-info/RECORD,,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
MIT License
|
2
2
|
|
3
|
-
Copyright (c) 2022-
|
3
|
+
Copyright (c) 2022-2025 PhasorPy Contributors
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
phasorpy-0.3.dist-info/RECORD
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
phasorpy/__init__.py,sha256=SwOTreV7wd8ZEL3waXQlgbNnsErWJ0dh6A2d77DWp0Y,254
|
2
|
-
phasorpy/__main__.py,sha256=0u6C98HYfajV1RoUww8kAc0CxdsON0ijgEyTYExCSLM,149
|
3
|
-
phasorpy/_phasorpy.cp312-win_amd64.pyd,sha256=pnNv8ao6-y39a1Ti9ksGM3fRXc8w8bWaMn92A32cH5g,892928
|
4
|
-
phasorpy/_phasorpy.pyx,sha256=1jHkJGcsdzCSLMGdpmvjFuSbg1A4w0XBa4Jy4udXzm4,62066
|
5
|
-
phasorpy/_typing.py,sha256=ii-5-8KTs2BZq0Ytu3yJl8ejSQj1V06c1_Jcwa_2Snk,1324
|
6
|
-
phasorpy/_utils.py,sha256=0c3d8D69wG7mTUzc-qh4GDff64FXJK9vFzRrZ0-XOqw,13255
|
7
|
-
phasorpy/cli.py,sha256=orN_31JOTzIUEfySwTo_Kr24UUzPKdA-DkemsmM8IHk,1977
|
8
|
-
phasorpy/color.py,sha256=axzL2b0d_g_6pG1wgHSdbiNtn7wAooYl3t-zaUNOBTE,17313
|
9
|
-
phasorpy/components.py,sha256=0ZuUaJllf4c2UFbiTOse5PYXkMLNF8q5VSUxvSgPjy8,10415
|
10
|
-
phasorpy/conftest.py,sha256=BywY24LnrOhaTHZIYkVAQ09JmvKZXevNKoshdLeL9nA,949
|
11
|
-
phasorpy/cursors.py,sha256=sUZ-9PJ5faJLWewRuENhF7nRJ-drPtW8Ui8YWD6UOw4,15546
|
12
|
-
phasorpy/datasets.py,sha256=AvZcR9hVgW5m7blKt51tFPC7zd1HBJ46GjfCeBb2r9E,15523
|
13
|
-
phasorpy/io.py,sha256=8kes4ebfbiu1bpNOA7cfbuZhCX39sMyRn86vnRh00i0,58340
|
14
|
-
phasorpy/phasor.py,sha256=zYCbg_KPw_JXRbrOjhinp9iUt51wE7M15DEovN9Z_RE,113150
|
15
|
-
phasorpy/plot.py,sha256=mkNcXN7caXHPBiBJazo5mEZawUitnGny8xbFsHS3u9c,69959
|
16
|
-
phasorpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
-
phasorpy/utils.py,sha256=an_dOCZM9WCNUxI3GFuxdjrF8BRVQIc0OnQStgiXF7A,11675
|
18
|
-
phasorpy/version.py,sha256=LDRHtMREhlYztKP-wHgHhtANbGj-bBz7rnICDjQ9Trw,1800
|
19
|
-
phasorpy-0.3.dist-info/LICENSE.txt,sha256=bxzmxrql9vHNenjAb0m7dSkLbEQJW9zJi2E0WjkAI68,1104
|
20
|
-
phasorpy-0.3.dist-info/METADATA,sha256=OwEDIpNLNxk2BM1IQnfkQihI3CGlgZF7uv_XnFpo7Pg,3464
|
21
|
-
phasorpy-0.3.dist-info/WHEEL,sha256=pWXrJbnZSH-J-PhYmKs2XNn4DHCPNBYq965vsBJBFvA,101
|
22
|
-
phasorpy-0.3.dist-info/entry_points.txt,sha256=VRhsl3qGiIKwtMraKapmduchTMbdReUi1AoVTe9f3ss,47
|
23
|
-
phasorpy-0.3.dist-info/top_level.txt,sha256=4Y0uYzya5R2loleAxZ6s2n53_FysUbgFTfFaU0i9rbo,9
|
24
|
-
phasorpy-0.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|