rubycond_of 0.2.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.
- rubycond_of-0.2.0/PKG-INFO +103 -0
- rubycond_of-0.2.0/README.md +80 -0
- rubycond_of-0.2.0/pyproject.toml +31 -0
- rubycond_of-0.2.0/rubycond_OF/example/Ruby_example.dat +1025 -0
- rubycond_of-0.2.0/rubycond_OF/example/example_use_of.py +76 -0
- rubycond_of-0.2.0/rubycond_OF/model/OF_Model.py +79 -0
- rubycond_of-0.2.0/rubycond_OF/rubycond_OF.py +345 -0
- rubycond_of-0.2.0/rubycond_OF/view/OF_View.py +881 -0
- rubycond_of-0.2.0/rubycond_OF/view/OF_about.py +237 -0
- rubycond_of-0.2.0/rubycond_OF/view/logo_CP_Scaled.png +0 -0
- rubycond_of-0.2.0/rubycond_OF/view/logo_IMPMC_Scaled.png +0 -0
- rubycond_of-0.2.0/rubycond_OF/view/manual.pdf +0 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: rubycond_of
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Tool for opening data files in the most common formats
|
|
5
|
+
License: GPL-3.0-or-later
|
|
6
|
+
Author: Yiuri Garino
|
|
7
|
+
Author-email: yiuri.garino@cnrs.fr
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Requires-Dist: configparser (>=6,<7)
|
|
15
|
+
Requires-Dist: lmfit (>=1.3,<2.0)
|
|
16
|
+
Requires-Dist: matplotlib (>=3.8.2,<4.0.0)
|
|
17
|
+
Requires-Dist: numpy (>=2.1,<3.0.0)
|
|
18
|
+
Requires-Dist: pillow (>=10.1.0)
|
|
19
|
+
Requires-Dist: pyqt5 (>=5.15.11,<6.0.0)
|
|
20
|
+
Project-URL: Repository, https://github.com/CelluleProjet/Rubycond_OF
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# Rubycond_OF
|
|
24
|
+
Tool for opening data files in the most common formats
|
|
25
|
+
|
|
26
|
+
<img width="1153" height="774" alt="Full_plot" src="https://github.com/user-attachments/assets/d9587bbf-2398-4baa-8dc4-288be1ef7866" />
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# Manual
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
<img width="276" height="50" alt="1_Black" src="https://github.com/user-attachments/assets/c28534c4-8723-4766-b2f5-60668a92380c" />
|
|
34
|
+
|
|
35
|
+
- **Show plain text**
|
|
36
|
+
- Opens a file as text to check the syntax
|
|
37
|
+
<img width="279" height="174" alt="2_green" src="https://github.com/user-attachments/assets/dcd0d3b3-509f-402e-b1c9-b28bac5795c1" />
|
|
38
|
+
|
|
39
|
+
- **Decimal separator**
|
|
40
|
+
- Select point or comma
|
|
41
|
+
- **Commented lines (ch)**
|
|
42
|
+
- The characters or list of characters used to indicate the start of a comment
|
|
43
|
+
- **Columns delimiter**
|
|
44
|
+
- Available options: space, tab, comma if decimal separator is point, point if decimal separator is comma, semicolon
|
|
45
|
+
- **Skip first (n) lines**
|
|
46
|
+
- Skip the first skiprows lines, including comments
|
|
47
|
+
- **Open**
|
|
48
|
+
- Select the file
|
|
49
|
+
<img width="276" height="49" alt="3_green" src="https://github.com/user-attachments/assets/a2c539b1-924b-4063-b2e4-56af277087dd" />
|
|
50
|
+
|
|
51
|
+
- **Open numpy (npy)**
|
|
52
|
+
- Load arrays from .npy files
|
|
53
|
+
<img width="278" height="143" alt="4_blue" src="https://github.com/user-attachments/assets/c8caffdd-3f8e-47a5-8504-430261a6988c" />
|
|
54
|
+
|
|
55
|
+
- **Plot**
|
|
56
|
+
- Use the **Plot** command to add new graphs from the selected X and Y columns in the **Plot** tab. Use the **Delete** button to remove them
|
|
57
|
+
<img width="278" height="83" alt="5_blue" src="https://github.com/user-attachments/assets/5c192700-2da0-486f-afd3-33d17fe6a029" />
|
|
58
|
+
|
|
59
|
+
- **Accept**
|
|
60
|
+
- Click Accept to send selected X and Y data to the main program
|
|
61
|
+
- **Cancel**
|
|
62
|
+
- Cancel
|
|
63
|
+
|
|
64
|
+
# Install
|
|
65
|
+
Use pip to install the program **within a virtual environment (strongly recommended).**
|
|
66
|
+
[Here's a short tutorial on installing a virtual environment.](https://github.com/CelluleProjet/Install/tree/main?tab=readme-ov-file#install-virtual-environment)
|
|
67
|
+
```bash
|
|
68
|
+
pip install rubycond_OF
|
|
69
|
+
```
|
|
70
|
+
# About
|
|
71
|
+
## Author
|
|
72
|
+
|
|
73
|
+
**Yiuri Garino**
|
|
74
|
+
|
|
75
|
+
## Contacts
|
|
76
|
+
|
|
77
|
+
**Yiuri Garino**
|
|
78
|
+
- yiuri.garino@cnrs.fr
|
|
79
|
+
|
|
80
|
+
**Silvia Boccato**
|
|
81
|
+
- silvia.boccato@cnrs.fr
|
|
82
|
+
|
|
83
|
+
<img src="https://github.com/CelluleProjet/Rubycond/assets/83216683/b728fe64-2752-4ecd-843b-09d335cf4f93" width="100" height="100">
|
|
84
|
+
<img src="https://github.com/CelluleProjet/Rubycond/assets/83216683/0a81ce1f-089f-49d8-ae65-d19af8078492" width="100" height="100">
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
[Cellule Projet](http://impmc.sorbonne-universite.fr/fr/plateformes-et-equipements/cellule-projet.html) @ [IMPMC](http://impmc.sorbonne-universite.fr/en/index.html)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
## License
|
|
91
|
+
**Rubycond_OF**: Tool for opening data files in the most common formats
|
|
92
|
+
|
|
93
|
+
Copyright (c) 2022-2026 Yiuri Garino
|
|
94
|
+
|
|
95
|
+
**Rubycond_OF** is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
96
|
+
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
97
|
+
|
|
98
|
+
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
99
|
+
|
|
100
|
+
## Release notes
|
|
101
|
+
|
|
102
|
+
Version 0.2.0 Release 260301: First release
|
|
103
|
+
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Rubycond_OF
|
|
2
|
+
Tool for opening data files in the most common formats
|
|
3
|
+
|
|
4
|
+
<img width="1153" height="774" alt="Full_plot" src="https://github.com/user-attachments/assets/d9587bbf-2398-4baa-8dc4-288be1ef7866" />
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# Manual
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
<img width="276" height="50" alt="1_Black" src="https://github.com/user-attachments/assets/c28534c4-8723-4766-b2f5-60668a92380c" />
|
|
12
|
+
|
|
13
|
+
- **Show plain text**
|
|
14
|
+
- Opens a file as text to check the syntax
|
|
15
|
+
<img width="279" height="174" alt="2_green" src="https://github.com/user-attachments/assets/dcd0d3b3-509f-402e-b1c9-b28bac5795c1" />
|
|
16
|
+
|
|
17
|
+
- **Decimal separator**
|
|
18
|
+
- Select point or comma
|
|
19
|
+
- **Commented lines (ch)**
|
|
20
|
+
- The characters or list of characters used to indicate the start of a comment
|
|
21
|
+
- **Columns delimiter**
|
|
22
|
+
- Available options: space, tab, comma if decimal separator is point, point if decimal separator is comma, semicolon
|
|
23
|
+
- **Skip first (n) lines**
|
|
24
|
+
- Skip the first skiprows lines, including comments
|
|
25
|
+
- **Open**
|
|
26
|
+
- Select the file
|
|
27
|
+
<img width="276" height="49" alt="3_green" src="https://github.com/user-attachments/assets/a2c539b1-924b-4063-b2e4-56af277087dd" />
|
|
28
|
+
|
|
29
|
+
- **Open numpy (npy)**
|
|
30
|
+
- Load arrays from .npy files
|
|
31
|
+
<img width="278" height="143" alt="4_blue" src="https://github.com/user-attachments/assets/c8caffdd-3f8e-47a5-8504-430261a6988c" />
|
|
32
|
+
|
|
33
|
+
- **Plot**
|
|
34
|
+
- Use the **Plot** command to add new graphs from the selected X and Y columns in the **Plot** tab. Use the **Delete** button to remove them
|
|
35
|
+
<img width="278" height="83" alt="5_blue" src="https://github.com/user-attachments/assets/5c192700-2da0-486f-afd3-33d17fe6a029" />
|
|
36
|
+
|
|
37
|
+
- **Accept**
|
|
38
|
+
- Click Accept to send selected X and Y data to the main program
|
|
39
|
+
- **Cancel**
|
|
40
|
+
- Cancel
|
|
41
|
+
|
|
42
|
+
# Install
|
|
43
|
+
Use pip to install the program **within a virtual environment (strongly recommended).**
|
|
44
|
+
[Here's a short tutorial on installing a virtual environment.](https://github.com/CelluleProjet/Install/tree/main?tab=readme-ov-file#install-virtual-environment)
|
|
45
|
+
```bash
|
|
46
|
+
pip install rubycond_OF
|
|
47
|
+
```
|
|
48
|
+
# About
|
|
49
|
+
## Author
|
|
50
|
+
|
|
51
|
+
**Yiuri Garino**
|
|
52
|
+
|
|
53
|
+
## Contacts
|
|
54
|
+
|
|
55
|
+
**Yiuri Garino**
|
|
56
|
+
- yiuri.garino@cnrs.fr
|
|
57
|
+
|
|
58
|
+
**Silvia Boccato**
|
|
59
|
+
- silvia.boccato@cnrs.fr
|
|
60
|
+
|
|
61
|
+
<img src="https://github.com/CelluleProjet/Rubycond/assets/83216683/b728fe64-2752-4ecd-843b-09d335cf4f93" width="100" height="100">
|
|
62
|
+
<img src="https://github.com/CelluleProjet/Rubycond/assets/83216683/0a81ce1f-089f-49d8-ae65-d19af8078492" width="100" height="100">
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
[Cellule Projet](http://impmc.sorbonne-universite.fr/fr/plateformes-et-equipements/cellule-projet.html) @ [IMPMC](http://impmc.sorbonne-universite.fr/en/index.html)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
## License
|
|
69
|
+
**Rubycond_OF**: Tool for opening data files in the most common formats
|
|
70
|
+
|
|
71
|
+
Copyright (c) 2022-2026 Yiuri Garino
|
|
72
|
+
|
|
73
|
+
**Rubycond_OF** is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
74
|
+
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
75
|
+
|
|
76
|
+
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
77
|
+
|
|
78
|
+
## Release notes
|
|
79
|
+
|
|
80
|
+
Version 0.2.0 Release 260301: First release
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "rubycond_of"
|
|
3
|
+
version = "0.2.0"
|
|
4
|
+
description = "Tool for opening data files in the most common formats"
|
|
5
|
+
authors = [
|
|
6
|
+
{name = "Yiuri Garino", email = "yiuri.garino@cnrs.fr"}
|
|
7
|
+
]
|
|
8
|
+
license = "GPL-3.0-or-later"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"numpy (>=2.1,<3.0.0)",
|
|
13
|
+
"configparser (>=6,<7)",
|
|
14
|
+
"matplotlib (>=3.8.2,<4.0.0)",
|
|
15
|
+
"lmfit (>=1.3,<2.0)",
|
|
16
|
+
"pyqt5 (>=5.15.11,<6.0.0)",
|
|
17
|
+
"pillow (>=10.1.0)"
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[tool.poetry]
|
|
21
|
+
packages = [{ include = "rubycond_OF" }]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
repository = "https://github.com/CelluleProjet/Rubycond_OF"
|
|
25
|
+
|
|
26
|
+
[project.scripts]
|
|
27
|
+
rubycond_OF = "rubycond_OF.rubycond_OF:main"
|
|
28
|
+
|
|
29
|
+
[build-system]
|
|
30
|
+
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
31
|
+
build-backend = "poetry.core.masonry.api"
|