sigima 0.0.1.dev0__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.

Potentially problematic release.


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

sigima/__init__.py ADDED
@@ -0,0 +1,2 @@
1
+ """Placeholder for future sigima package."""
2
+ __version__ = "0.0.1.dev0"
@@ -0,0 +1,60 @@
1
+ Metadata-Version: 2.4
2
+ Name: sigima
3
+ Version: 0.0.1.dev0
4
+ Summary: Scientific computing engine for 1D signals and 2D images, part of the DataLab open-source platform.
5
+ Author-email: Pierre Raybaut <p.raybaut@codra.fr>
6
+ Maintainer-email: DataLab Platform Developers <p.raybaut@codra.fr>
7
+ License-Expression: BSD-3-Clause
8
+ Project-URL: Homepage, https://datalab-platform.com/
9
+ Project-URL: Documentation, https://datalab-platform.com/
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Education
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Intended Audience :: End Users/Desktop
15
+ Classifier: Operating System :: MacOS :: MacOS X
16
+ Classifier: Operating System :: Microsoft :: Windows :: Windows 7
17
+ Classifier: Operating System :: Microsoft :: Windows :: Windows 8
18
+ Classifier: Operating System :: Microsoft :: Windows :: Windows 10
19
+ Classifier: Operating System :: Microsoft :: Windows :: Windows 11
20
+ Classifier: Operating System :: POSIX :: Linux
21
+ Classifier: Programming Language :: Python :: 3.9
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Topic :: Scientific/Engineering
27
+ Classifier: Topic :: Scientific/Engineering :: Image Processing
28
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
29
+ Requires-Python: <4,>=3.9
30
+ Description-Content-Type: text/markdown
31
+ License-File: LICENSE
32
+ Requires-Dist: guidata>=3.9
33
+ Requires-Dist: SciPy<1.15.0,>=1.5
34
+ Requires-Dist: scikit-image>=0.18
35
+ Requires-Dist: pandas>=1.2
36
+ Requires-Dist: PyWavelets>=1.1
37
+ Provides-Extra: opencv
38
+ Requires-Dist: opencv-python-headless>=4.5; extra == "opencv"
39
+ Provides-Extra: dev
40
+ Requires-Dist: ruff; extra == "dev"
41
+ Requires-Dist: pylint; extra == "dev"
42
+ Requires-Dist: Coverage; extra == "dev"
43
+ Provides-Extra: doc
44
+ Requires-Dist: sphinx; extra == "doc"
45
+ Requires-Dist: sphinx_intl; extra == "doc"
46
+ Requires-Dist: sphinx-sitemap; extra == "doc"
47
+ Requires-Dist: myst_parser; extra == "doc"
48
+ Requires-Dist: sphinx_design; extra == "doc"
49
+ Requires-Dist: sphinx-copybutton; extra == "doc"
50
+ Requires-Dist: pydata-sphinx-theme; extra == "doc"
51
+ Provides-Extra: test
52
+ Requires-Dist: pytest; extra == "test"
53
+ Requires-Dist: pytest-xvfb; extra == "test"
54
+ Dynamic: license-file
55
+
56
+ # sigima
57
+
58
+ Placeholder for the future 'sigima' package, which will contain the computation and processing core of DataLab.
59
+
60
+ This package name is reserved for future use.
@@ -0,0 +1,6 @@
1
+ sigima/__init__.py,sha256=FbYTJmEK_SccS3CbUfepDTkLiQTY8jvEodRVW4cCWv8,72
2
+ sigima-0.0.1.dev0.dist-info/licenses/LICENSE,sha256=iMgU90_yimtLdU_nI3rWUq2mDMCvdm_EOVliNKyNLXo,1565
3
+ sigima-0.0.1.dev0.dist-info/METADATA,sha256=q-iQy_oWaqgE_5ng9D4RkijE22AMQAspmtviSBlFaO0,2618
4
+ sigima-0.0.1.dev0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
5
+ sigima-0.0.1.dev0.dist-info/top_level.txt,sha256=2S6l_bZM3oSKBLyV650JkqR4TCHbrE5Ded9V6hBBOus,7
6
+ sigima-0.0.1.dev0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,29 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2023, DataLab Platform Developers.
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ 1. Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ 3. Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1 @@
1
+ sigima