esrf-id10-surf 0.1.6__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.
- esrf_id10_surf-0.1.6/LICENSE +21 -0
- esrf_id10_surf-0.1.6/PKG-INFO +59 -0
- esrf_id10_surf-0.1.6/README.md +35 -0
- esrf_id10_surf-0.1.6/pyproject.toml +43 -0
- esrf_id10_surf-0.1.6/setup.cfg +4 -0
- esrf_id10_surf-0.1.6/src/ESRF_ID10_SURF/GID/GID.py +818 -0
- esrf_id10_surf-0.1.6/src/ESRF_ID10_SURF/GID/__init__.py +1 -0
- esrf_id10_surf-0.1.6/src/ESRF_ID10_SURF/GIXS/GIXS.py +248 -0
- esrf_id10_surf-0.1.6/src/ESRF_ID10_SURF/GIXS/__init__.py +1 -0
- esrf_id10_surf-0.1.6/src/ESRF_ID10_SURF/XRR/XRR.py +1057 -0
- esrf_id10_surf-0.1.6/src/ESRF_ID10_SURF/XRR/__init__.py +1 -0
- esrf_id10_surf-0.1.6/src/ESRF_ID10_SURF/__init__.py +7 -0
- esrf_id10_surf-0.1.6/src/ESRF_ID10_SURF/cli.py +197 -0
- esrf_id10_surf-0.1.6/src/ESRF_ID10_SURF/gui.py +432 -0
- esrf_id10_surf-0.1.6/src/esrf_id10_surf.egg-info/PKG-INFO +59 -0
- esrf_id10_surf-0.1.6/src/esrf_id10_surf.egg-info/SOURCES.txt +19 -0
- esrf_id10_surf-0.1.6/src/esrf_id10_surf.egg-info/dependency_links.txt +1 -0
- esrf_id10_surf-0.1.6/src/esrf_id10_surf.egg-info/entry_points.txt +2 -0
- esrf_id10_surf-0.1.6/src/esrf_id10_surf.egg-info/requires.txt +7 -0
- esrf_id10_surf-0.1.6/src/esrf_id10_surf.egg-info/top_level.txt +1 -0
- esrf_id10_surf-0.1.6/tests/test_import.py +18 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Egor A. Bersenev
|
|
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,59 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: esrf_id10_surf
|
|
3
|
+
Version: 0.1.6
|
|
4
|
+
Summary: A package for analyzing surface X-ray scattering data from the ID10-SURF beamline at the ESRF.
|
|
5
|
+
Author-email: "Egor A. Bersenev" <egor.bersenev@esrf.fr>
|
|
6
|
+
Project-URL: Homepage, https://chelberserker.github.io/ESRF_ID10_SURF/
|
|
7
|
+
Project-URL: Documentation, https://chelberserker.github.io/ESRF_ID10_SURF/
|
|
8
|
+
Project-URL: Repository, https://github.com/chelberserker/ESRF_ID10_SURF
|
|
9
|
+
Keywords: X-ray reflectivity,reflectometry,ESRF-ID10-SURF,ESRF ID10,ESRF,ID10,X-ray,reflectivity,GID,XRR,Grazing Incidence Diffraction,GISAXS,GIXS
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Requires-Dist: numpy
|
|
17
|
+
Requires-Dist: matplotlib
|
|
18
|
+
Requires-Dist: h5py
|
|
19
|
+
Requires-Dist: lmfit
|
|
20
|
+
Requires-Dist: scipy
|
|
21
|
+
Requires-Dist: orsopy
|
|
22
|
+
Requires-Dist: PyYAML
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
|
|
25
|
+
[](https://pypi.org/project/esrf_id10_surf/)
|
|
26
|
+
[](https://opensource.org/licenses/MIT)
|
|
27
|
+
[](https://pypi.org/project/esrf_id10_surf/)
|
|
28
|
+
|
|
29
|
+
# ESRF ID10-SURF Data Analysis
|
|
30
|
+
|
|
31
|
+
This package provides a collection of tools for analyzing surface X-ray scattering data from the ID10-SURF beamline at the European Synchrotron Radiation Facility (ESRF).
|
|
32
|
+
|
|
33
|
+
## Features
|
|
34
|
+
|
|
35
|
+
* **XRR (X-ray Reflectivity):** Process and analyze X-ray reflectivity data obtained with a 2D pixel detector
|
|
36
|
+
* **GID (Grazing Incidence Diffraction):** Process and analyze grazing incidence diffraction data taken with a linear detector
|
|
37
|
+
* **GIS(W)AXS (Grazing Incidence Small(Wide)-Angle X-ray Scattering):** (Under development)
|
|
38
|
+
|
|
39
|
+
## Installation
|
|
40
|
+
|
|
41
|
+
To install the package use pip:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
pip install esrf-id10-surf
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
If you would like to install the library and modify the code to see the effects immediately:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
git clone https://github.com/chelberserker/ESRF_ID10_SURF
|
|
51
|
+
cd ESRF_ID10_SURF
|
|
52
|
+
pip install -e .
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Usage
|
|
56
|
+
|
|
57
|
+
Detailed documentation and usage examples can be found here:
|
|
58
|
+
|
|
59
|
+
https://chelberserker.github.io/ESRF_ID10_SURF/
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[](https://pypi.org/project/esrf_id10_surf/)
|
|
2
|
+
[](https://opensource.org/licenses/MIT)
|
|
3
|
+
[](https://pypi.org/project/esrf_id10_surf/)
|
|
4
|
+
|
|
5
|
+
# ESRF ID10-SURF Data Analysis
|
|
6
|
+
|
|
7
|
+
This package provides a collection of tools for analyzing surface X-ray scattering data from the ID10-SURF beamline at the European Synchrotron Radiation Facility (ESRF).
|
|
8
|
+
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
* **XRR (X-ray Reflectivity):** Process and analyze X-ray reflectivity data obtained with a 2D pixel detector
|
|
12
|
+
* **GID (Grazing Incidence Diffraction):** Process and analyze grazing incidence diffraction data taken with a linear detector
|
|
13
|
+
* **GIS(W)AXS (Grazing Incidence Small(Wide)-Angle X-ray Scattering):** (Under development)
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
To install the package use pip:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install esrf-id10-surf
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
If you would like to install the library and modify the code to see the effects immediately:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
git clone https://github.com/chelberserker/ESRF_ID10_SURF
|
|
27
|
+
cd ESRF_ID10_SURF
|
|
28
|
+
pip install -e .
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Usage
|
|
32
|
+
|
|
33
|
+
Detailed documentation and usage examples can be found here:
|
|
34
|
+
|
|
35
|
+
https://chelberserker.github.io/ESRF_ID10_SURF/
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "esrf_id10_surf"
|
|
7
|
+
keywords = ["X-ray reflectivity", "reflectometry", "ESRF-ID10-SURF", "ESRF ID10", "ESRF", "ID10", "X-ray", "reflectivity", "GID", "XRR", "Grazing Incidence Diffraction", "GISAXS", "GIXS"]
|
|
8
|
+
dynamic = ["version"]
|
|
9
|
+
authors = [
|
|
10
|
+
{ name="Egor A. Bersenev", email="egor.bersenev@esrf.fr" },
|
|
11
|
+
]
|
|
12
|
+
description = "A package for analyzing surface X-ray scattering data from the ID10-SURF beamline at the ESRF."
|
|
13
|
+
readme = "README.md"
|
|
14
|
+
requires-python = ">=3.8"
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
]
|
|
20
|
+
dependencies = [
|
|
21
|
+
"numpy",
|
|
22
|
+
"matplotlib",
|
|
23
|
+
"h5py",
|
|
24
|
+
"lmfit",
|
|
25
|
+
"scipy",
|
|
26
|
+
"orsopy",
|
|
27
|
+
"PyYAML"
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
[project.urls]
|
|
31
|
+
Homepage = "https://chelberserker.github.io/ESRF_ID10_SURF/"
|
|
32
|
+
Documentation = "https://chelberserker.github.io/ESRF_ID10_SURF/"
|
|
33
|
+
Repository = "https://github.com/chelberserker/ESRF_ID10_SURF"
|
|
34
|
+
|
|
35
|
+
[project.scripts]
|
|
36
|
+
id10-surf-process = "ESRF_ID10_SURF.cli:main"
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
[tool.setuptools]
|
|
40
|
+
package-dir = {"" = "src"}
|
|
41
|
+
|
|
42
|
+
[tool.setuptools.dynamic]
|
|
43
|
+
version = {attr = "ESRF_ID10_SURF.__version__"}
|