smlmlp 0.1.0__tar.gz

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.

Potentially problematic release.


This version of smlmlp might be problematic. Click here for more details.

smlmlp-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.3
2
+ Name: smlmlp
3
+ Version: 0.1.0
4
+ Summary: A python library for Single Molecule Localization Microscopy.
5
+ Author: LancelotPincet
6
+ Author-email: LancelotPincet <40608570+LancelotPincet@users.noreply.github.com>
7
+ Requires-Dist: corelp
8
+ Requires-Dist: pytest>=8.4.1
9
+ Requires-Dist: sphinx>=8.2.3
10
+ Requires-Dist: sphinx-rtd-theme>=3.0.2
11
+ Requires-Dist: toml>=0.10.2
12
+ Requires-Python: >=3.12
13
+ Description-Content-Type: text/markdown
14
+
15
+ # smlmLP
16
+
17
+ ```text
18
+ Author : Lancelot PINCET
19
+ GitHub : https://github.com/LancelotPincet/smlmLP
20
+ HTTPS : https://github.com/LancelotPincet/smlmLP.git
21
+ SSH : git@github.com:LancelotPincet/smlmLP.git
22
+ PyPI : https://pypi.org/project/smlmLP
23
+ Docs : https://smlmLP.readthedocs.io
24
+ ```
25
+
26
+ **A python library for Single Molecule Localization Microscopy.**
27
+
28
+ smlmLP is available on [PyPI](https://pypi.org/project/smlmLP) for pip installs.
29
+ For more information, do not hesitate to consult the [Documentation](https://smlmLP.readthedocs.io).
30
+
31
+ ---
32
+
33
+ ## MIT License
34
+
35
+ 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.
36
+
37
+ 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.
38
+
39
+ 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.
smlmlp-0.1.0/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # smlmLP
2
+
3
+ ```text
4
+ Author : Lancelot PINCET
5
+ GitHub : https://github.com/LancelotPincet/smlmLP
6
+ HTTPS : https://github.com/LancelotPincet/smlmLP.git
7
+ SSH : git@github.com:LancelotPincet/smlmLP.git
8
+ PyPI : https://pypi.org/project/smlmLP
9
+ Docs : https://smlmLP.readthedocs.io
10
+ ```
11
+
12
+ **A python library for Single Molecule Localization Microscopy.**
13
+
14
+ smlmLP is available on [PyPI](https://pypi.org/project/smlmLP) for pip installs.
15
+ For more information, do not hesitate to consult the [Documentation](https://smlmLP.readthedocs.io).
16
+
17
+ ---
18
+
19
+ ## MIT License
20
+
21
+ 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.
22
+
23
+ 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.
24
+
25
+ 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.
@@ -0,0 +1,26 @@
1
+ [project]
2
+ name = "smlmlp"
3
+ version = "0.1.0"
4
+ description = "A python library for Single Molecule Localization Microscopy."
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ dependencies = [
8
+ "corelp",
9
+ "pytest>=8.4.1",
10
+ "sphinx>=8.2.3",
11
+ "sphinx-rtd-theme>=3.0.2",
12
+ "toml>=0.10.2",
13
+ ]
14
+ [[project.authors]]
15
+ name = "LancelotPincet"
16
+ email = "40608570+LancelotPincet@users.noreply.github.com"
17
+
18
+ [build-system]
19
+ requires = [ "uv_build>=0.8.8,<0.9.0",]
20
+ build-backend = "uv_build"
21
+
22
+ ["tool.uv"]
23
+ required-environments = [ "sys_platform == 'linux' and platform_machine == 'x86_64'", "sys_platform == 'win32' and (platform_machine == 'AMD64' or platform_machine == 'x86_64')",]
24
+
25
+ [tool.uv.sources]
26
+ corelp = { workspace = true }
@@ -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
+ # %% Lazy imports
15
+ from corelp import getmodule
16
+ __getattr__, __all__ = getmodule(__file__)
17
+
18
+
19
+
20
+ # %% Test function run
21
+ if __name__ == "__main__":
22
+ from corelp import test
23
+ test(__file__)
File without changes
@@ -0,0 +1 @@
1
+ {}
File without changes
File without changes
@@ -0,0 +1 @@
1
+ {}