smlmlp 0.1.8__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.
- smlmlp/__init__.py +23 -0
- smlmlp/modules/__init__.py +0 -0
- smlmlp/py.typed +0 -0
- smlmlp/routines/__init__.py +0 -0
- smlmlp-0.1.8.dist-info/METADATA +38 -0
- smlmlp-0.1.8.dist-info/RECORD +7 -0
- smlmlp-0.1.8.dist-info/WHEEL +4 -0
smlmlp/__init__.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Date : 2025-08-28
|
|
4
|
+
# Author : Lancelot PINCET
|
|
5
|
+
# GitHub : https://github.com/LancelotPincet
|
|
6
|
+
# Library : smlmLP
|
|
7
|
+
|
|
8
|
+
"""
|
|
9
|
+
A python library for Single Molecule Localization Microscopy.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# %% Source code
|
|
15
|
+
sources = {
|
|
16
|
+
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
# %% Lazy imports
|
|
22
|
+
from corelp import getmodule
|
|
23
|
+
__getattr__, __all__ = getmodule(sources)
|
|
File without changes
|
smlmlp/py.typed
ADDED
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: smlmlp
|
|
3
|
+
Version: 0.1.8
|
|
4
|
+
Summary: A python library for Single Molecule Localization Microscopy.
|
|
5
|
+
Requires-Dist: corelp
|
|
6
|
+
Requires-Python: >=3.12
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# smlmLP
|
|
10
|
+
|
|
11
|
+
```text
|
|
12
|
+
Author : Lancelot PINCET
|
|
13
|
+
GitHub : https://github.com/LancelotPincet/smlmLP
|
|
14
|
+
HTTPS : https://github.com/LancelotPincet/smlmLP.git
|
|
15
|
+
SSH : git@github.com:LancelotPincet/smlmLP.git
|
|
16
|
+
PyPI : https://pypi.org/project/smlmLP
|
|
17
|
+
Docs : https://smlmLP.readthedocs.io
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
**A python library for Single Molecule Localization Microscopy.**
|
|
21
|
+
|
|
22
|
+
smlmLP is available on [PyPI](https://pypi.org/project/smlmLP) for pip installs.
|
|
23
|
+
For more information, do not hesitate to consult the [Documentation](https://smlmLP.readthedocs.io).
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## MIT License
|
|
28
|
+
|
|
29
|
+
<details>
|
|
30
|
+
<summary>details</summary>
|
|
31
|
+
|
|
32
|
+
Intellectual property behind this Library is protected via an [MIT license](LICENSE). This means everyone can *freely* use it in a personnal, academic or commercial manner, if they **keep the copyright name** at the top of the codes.
|
|
33
|
+
|
|
34
|
+
The library can be redistributed, *with or without modifications*, in open or closed projects. However the **MIT license must be conserved**. For example in a commercial closed project, this means the **copyright and license must be visible somewhere**, like in the documentation or credits.
|
|
35
|
+
|
|
36
|
+
The license also explains that the **code performances are not warrantied**, and you are responsible for how you are using it. For more information on your rights and obligations please refer to [descriptive websites](https://en.wikipedia.org/wiki/MIT_License), or contact author for approvales.
|
|
37
|
+
|
|
38
|
+
</details>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
smlmlp/__init__.py,sha256=wwktd21AIPEoIoISI7Jx57QySk9tuCSt8I78VpaLNJg,384
|
|
2
|
+
smlmlp/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
smlmlp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
smlmlp/routines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
smlmlp-0.1.8.dist-info/WHEEL,sha256=XV0cjMrO7zXhVAIyyc8aFf1VjZ33Fen4IiJk5zFlC3g,80
|
|
6
|
+
smlmlp-0.1.8.dist-info/METADATA,sha256=P5MMU6mxdF4QKWHfyHLcmFP3bbtm2Y6_To2_II9EJHA,1677
|
|
7
|
+
smlmlp-0.1.8.dist-info/RECORD,,
|