rubycond_of 0.2.1__tar.gz → 0.2.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rubycond_of
3
- Version: 0.2.1
3
+ Version: 0.2.3
4
4
  Summary: Tool for opening data files in the most common formats
5
5
  License: GPL-3.0-or-later
6
6
  Author: Yiuri Garino
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "rubycond_of"
3
- version = "0.2.1"
3
+ version = "0.2.3"
4
4
  description = "Tool for opening data files in the most common formats"
5
5
  authors = [
6
6
  {name = "Yiuri Garino", email = "yiuri.garino@cnrs.fr"}
@@ -1,8 +1,35 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
3
 
4
+ Title: Rubycond_OF: tool for opening data files in the most common formats
4
5
 
5
- https://www.pythonguis.com/tutorials/pyqt-dialogs/
6
+ Rubycond: Python software to determine pressure in diamond anvil cell experiments by Ruby and Samarium luminescence.
7
+
8
+ Version 0.2.0
9
+ Release 260301
10
+
11
+ Author:
12
+
13
+ Yiuri Garino:
14
+
15
+ Copyright (c) 2023-2026 Yiuri Garino
16
+
17
+ Download:
18
+ https://github.com/CelluleProjet/Rubycond_of
19
+
20
+ Contacts:
21
+
22
+ Yiuri Garino
23
+ yiuri.garino@cnrs.fr
24
+
25
+ Silvia Boccato
26
+ silvia.boccato@cnrs.fr
27
+
28
+ License: GPLv3
29
+
30
+ This program 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.
31
+ 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.
32
+ You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
6
33
 
7
34
  """
8
35
 
@@ -1,15 +1,29 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
3
 
4
- Title:
4
+ Title: Rubycond_OF: tool for opening data files in the most common formats
5
5
 
6
- Created on Fri Mar 15 15:30:42 2024
6
+ Rubycond: Python software to determine pressure in diamond anvil cell experiments by Ruby and Samarium luminescence.
7
7
 
8
- Author: Yiuri Garino @ yiuri.garino@cnrs.fr
8
+ Version 0.2.0
9
+ Release 260301
9
10
 
10
- Copyright (c) 2024 Yiuri Garino
11
+ Author:
11
12
 
12
- Version:
13
+ Yiuri Garino:
14
+
15
+ Copyright (c) 2023-2026 Yiuri Garino
16
+
17
+ Download:
18
+ https://github.com/CelluleProjet/Rubycond_of
19
+
20
+ Contacts:
21
+
22
+ Yiuri Garino
23
+ yiuri.garino@cnrs.fr
24
+
25
+ Silvia Boccato
26
+ silvia.boccato@cnrs.fr
13
27
 
14
28
  License: GPLv3
15
29
 
@@ -30,19 +44,14 @@ def reset():
30
44
  get_ipython().run_line_magic('reset','-sf')
31
45
  print("Running interactively")
32
46
  print()
33
- terminal = False
34
47
  else:
35
48
  print("Running in terminal")
36
49
  print()
37
- terminal = True
38
50
 
39
51
  if __name__ == '__main__':
40
52
  reset()
41
53
 
42
- import configparser as cp
43
- from pathlib import Path
44
- import numpy as np
45
- import matplotlib.pyplot as plt
54
+
46
55
  import os
47
56
  from datetime import datetime
48
57
  from PyQt5 import QtWidgets
@@ -3,20 +3,27 @@
3
3
 
4
4
  Title: Rubycond_OF: tool for opening data files in the most common formats
5
5
 
6
- This file is part of Rubycond: Pressure by Ruby Luminescence (PRL) software to determine pressure in diamond anvil cell experiments.
6
+ Rubycond: Python software to determine pressure in diamond anvil cell experiments by Ruby and Samarium luminescence.
7
7
 
8
8
  Version 0.2.0
9
9
  Release 260301
10
10
 
11
11
  Author:
12
12
 
13
- Yiuri Garino
14
- yiuri.garino@cnrs.fr
13
+ Yiuri Garino:
15
14
 
16
15
  Copyright (c) 2023-2026 Yiuri Garino
17
16
 
18
17
  Download:
19
- https://github.com/CelluleProjet/Rubycond_OF
18
+ https://github.com/CelluleProjet/Rubycond_of
19
+
20
+ Contacts:
21
+
22
+ Yiuri Garino
23
+ yiuri.garino@cnrs.fr
24
+
25
+ Silvia Boccato
26
+ silvia.boccato@cnrs.fr
20
27
 
21
28
  License: GPLv3
22
29
 
@@ -1,22 +1,29 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
3
 
4
- Title: OF_View: tool for opening data files in the most common formats
4
+ Title: Rubycond_OF: tool for opening data files in the most common formats
5
5
 
6
- This file is part of Rubycond: Pressure by Ruby Luminescence (PRL) software to determine pressure in diamond anvil cell experiments.
6
+ Rubycond: Python software to determine pressure in diamond anvil cell experiments by Ruby and Samarium luminescence.
7
7
 
8
8
  Version 0.2.0
9
9
  Release 260301
10
10
 
11
11
  Author:
12
12
 
13
- Yiuri Garino
14
- yiuri.garino@cnrs.fr
13
+ Yiuri Garino:
15
14
 
16
15
  Copyright (c) 2023-2026 Yiuri Garino
17
16
 
18
17
  Download:
19
- https://github.com/CelluleProjet/Rubycond_OF
18
+ https://github.com/CelluleProjet/Rubycond_of
19
+
20
+ Contacts:
21
+
22
+ Yiuri Garino
23
+ yiuri.garino@cnrs.fr
24
+
25
+ Silvia Boccato
26
+ silvia.boccato@cnrs.fr
20
27
 
21
28
  License: GPLv3
22
29
 
@@ -37,20 +44,15 @@ def reset():
37
44
  get_ipython().run_line_magic('reset','-sf')
38
45
  print("Running interactively")
39
46
  print()
40
- terminal = False
41
47
  else:
42
48
  print("Running in terminal")
43
49
  print()
44
- terminal = True
45
50
 
46
51
  if __name__ == '__main__':
47
52
  reset()
48
53
 
49
- import configparser as cp
50
- from pathlib import Path
51
54
  import numpy as np
52
55
  import matplotlib.pyplot as plt
53
- from matplotlib.lines import Line2D
54
56
  from matplotlib.backend_bases import MouseEvent
55
57
  from datetime import datetime
56
58
  import sys
@@ -61,7 +63,7 @@ try:
61
63
  except ImportError:
62
64
  from io import StringIO
63
65
 
64
- from PyQt5 import QtWidgets, QtCore, QtGui
66
+ from PyQt5 import QtWidgets, QtCore
65
67
  from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
66
68
  from matplotlib.backends.backend_qt5agg import NavigationToolbar2QT as NavigationToolbar
67
69
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  Title: Rubycond_OF: tool for opening data files in the most common formats
5
5
 
6
- Rubycond: Pressure by Ruby Luminescence (PRL) software to determine pressure in diamond anvil cell experiments.
6
+ Rubycond: Python software to determine pressure in diamond anvil cell experiments by Ruby and Samarium luminescence.
7
7
 
8
8
  Version 0.2.0
9
9
  Release 260301
@@ -98,8 +98,8 @@ along with this program. If not, see <a href="https://www.gnu.org/licenses/">ht
98
98
  <h3>Version {self.version} Relese {self.release}
99
99
  <br>
100
100
  <table><tr><td style="padding-left: 1.5em;">
101
- <a href="{self.url_github}">Download and online manual</a></tr>
102
- <a href="{self.url_manual_pdf}">Pdf manual</a>
101
+ <a href="{self.url_github}">Online manual</a></tr>
102
+ <br><a href="{self.url_manual_pdf}">Open pdf manual</a>
103
103
  </h3></td></tr></table>
104
104
 
105
105
  <br>
File without changes