syncmoss 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.
@@ -0,0 +1,14 @@
1
+ SYNCmoss - Mössbauer Spectroscopy Analysis Software
2
+ =====================================================
3
+
4
+ Copyright (c) European Synchrotron Radiation Facility (ESRF)
5
+
6
+ This software is distributed under the MIT License (see LICENSE file).
7
+
8
+ Third-party components are used under their respective licenses:
9
+ - PySide6: LGPL v3.0 (dynamically linked)
10
+ - NumPy: BSD 3-Clause
11
+ - SciPy: BSD 3-Clause
12
+ - Matplotlib: BSD-compatible
13
+
14
+ For complete third-party license details, see NOTICE.txt.
syncmoss-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) European Synchrotron Radiation Facility (ESRF)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,50 @@
1
+ SYNCmoss - Third-Party Software Notices and Information
2
+ =========================================================
3
+
4
+ This project is licensed under the MIT License. See LICENSE for details.
5
+ It uses the following third-party libraries, each distributed under
6
+ their own license terms.
7
+
8
+ PySide6 (Qt for Python)
9
+ -----------------------
10
+ Licensed under the GNU Lesser General Public License (LGPL) v3.0
11
+ Copyright (C) The Qt Company Ltd.
12
+ https://www.qt.io/licensing/
13
+
14
+ LGPL v3.0 COMPLIANCE NOTICE:
15
+ This software dynamically links to PySide6. Under the terms of the
16
+ LGPL v3.0, you may:
17
+ - Use this MIT-licensed software without your own code becoming LGPL.
18
+ - Replace the PySide6 library with any compatible version.
19
+ - Obtain PySide6 source code at:
20
+ https://code.qt.io/cgit/pyside/pyside-setup.git/
21
+ - Read the full LGPL v3.0 license at:
22
+ https://www.gnu.org/licenses/lgpl-3.0.html
23
+
24
+ NumPy
25
+ -----
26
+ Licensed under the BSD 3-Clause License
27
+ Copyright (c) 2005-2024, NumPy Developers
28
+ https://numpy.org/doc/stable/license.html
29
+
30
+ SciPy
31
+ -----
32
+ Licensed under the BSD 3-Clause License
33
+ Copyright (c) 2001-2024, SciPy Developers
34
+ https://scipy.org/scipylib/license.html
35
+
36
+ Matplotlib
37
+ ----------
38
+ Licensed under the Matplotlib License (BSD-compatible)
39
+ Copyright (c) 2002-2024, Matplotlib Development Team
40
+ https://matplotlib.org/stable/users/project/license.html
41
+
42
+ PyInstaller (bundling only)
43
+ ---------------------------
44
+ Licensed under the GPL 2.0 with a special bootloader exception that
45
+ permits distributing non-GPL applications bundled with PyInstaller.
46
+ Copyright (c) 2010-2024, PyInstaller Development Team
47
+ https://pyinstaller.org/en/stable/license.html
48
+ The bundled Windows executable is created with PyInstaller. The
49
+ bootloader exception explicitly allows this use without requiring
50
+ the application itself to be GPL-licensed.
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.4
2
+ Name: syncmoss
3
+ Version: 0.1.0
4
+ Summary: SYNCmoss — Mössbauer spectroscopy analysis application
5
+ Author: Sergey Yaroslavtsev
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/sergey-yaroslavtsev/syncmoss
8
+ Project-URL: Repository, https://github.com/sergey-yaroslavtsev/syncmoss
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
20
+ Classifier: Topic :: Scientific/Engineering :: Physics
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ License-File: COPYING.txt
25
+ License-File: NOTICE.txt
26
+ Requires-Dist: numpy
27
+ Requires-Dist: scipy
28
+ Requires-Dist: matplotlib
29
+ Requires-Dist: PySide6
30
+ Dynamic: license-file
31
+
32
+ # SYNCmoss
33
+
34
+ Mössbauer Spectroscopy Analysis Software
35
+
36
+ ## License
37
+
38
+ This software is licensed under the MIT License. See [LICENSE](LICENSE) for details.
39
+
40
+ Copyright (c) European Synchrotron Radiation Facility (ESRF)
41
+
42
+ ## Third-Party Software
43
+
44
+ This software uses third-party libraries that are distributed under their own licenses:
45
+
46
+ - **PySide6**: LGPL v3.0 (dynamically linked — does not affect MIT licensing of this project)
47
+ - **NumPy**: BSD 3-Clause License
48
+ - **SciPy**: BSD 3-Clause License
49
+ - **Matplotlib**: Matplotlib License (BSD-compatible)
50
+
51
+ For complete third-party license information, see [NOTICE.txt](NOTICE.txt).
@@ -0,0 +1,20 @@
1
+ # SYNCmoss
2
+
3
+ Mössbauer Spectroscopy Analysis Software
4
+
5
+ ## License
6
+
7
+ This software is licensed under the MIT License. See [LICENSE](LICENSE) for details.
8
+
9
+ Copyright (c) European Synchrotron Radiation Facility (ESRF)
10
+
11
+ ## Third-Party Software
12
+
13
+ This software uses third-party libraries that are distributed under their own licenses:
14
+
15
+ - **PySide6**: LGPL v3.0 (dynamically linked — does not affect MIT licensing of this project)
16
+ - **NumPy**: BSD 3-Clause License
17
+ - **SciPy**: BSD 3-Clause License
18
+ - **Matplotlib**: Matplotlib License (BSD-compatible)
19
+
20
+ For complete third-party license information, see [NOTICE.txt](NOTICE.txt).
@@ -0,0 +1,58 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "syncmoss"
7
+ version = "0.1.0"
8
+ description = "SYNCmoss — Mössbauer spectroscopy analysis application"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ requires-python = ">=3.9"
12
+ authors = [
13
+ {name = "Sergey Yaroslavtsev"},
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 3 - Alpha",
17
+ "Intended Audience :: Science/Research",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ "Programming Language :: Python :: 3.13",
26
+ "Programming Language :: Python :: 3.14",
27
+ "Topic :: Scientific/Engineering :: Physics",
28
+ ]
29
+ dependencies = [
30
+ "numpy",
31
+ "scipy",
32
+ "matplotlib",
33
+ "PySide6",
34
+ ]
35
+
36
+ [project.urls]
37
+ Homepage = "https://github.com/sergey-yaroslavtsev/syncmoss"
38
+ Repository = "https://github.com/sergey-yaroslavtsev/syncmoss"
39
+
40
+ [project.gui-scripts]
41
+ syncmoss = "syncmoss.main:main"
42
+
43
+ [tool.setuptools.packages.find]
44
+ where = ["."]
45
+ include = ["src*"]
46
+
47
+ [tool.setuptools.package-dir]
48
+ syncmoss = "src"
49
+
50
+ [tool.setuptools.package-data]
51
+ syncmoss = [
52
+ "icons/*.png",
53
+ "icons/*.ico",
54
+ "icons/*.svg",
55
+ "parameters/*.txt",
56
+ "*.json",
57
+ "*.dat",
58
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+