mat3ra-esse 2025.4.3.post0__py3-none-any.whl → 2025.4.15.post0__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 mat3ra-esse might be problematic. Click here for more details.

Files changed (45) hide show
  1. mat3ra/esse/data/examples.py +1 -1
  2. mat3ra/esse/data/schemas.py +1 -1
  3. mat3ra/esse/models/core/reusable/accuracy_level.py +27 -0
  4. mat3ra/esse/models/core/reusable/band_gap.py +1 -1
  5. mat3ra/esse/models/core/reusable/energy.py +1 -1
  6. mat3ra/esse/models/core/reusable/energy_accuracy_levels/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py +3 -0
  7. mat3ra/esse/models/core/reusable/energy_accuracy_levels/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py +31 -0
  8. mat3ra/esse/models/core/reusable/energy_accuracy_levels.py +31 -0
  9. mat3ra/esse/models/core/reusable/scalar_with_accuracy_levels.py +23 -0
  10. mat3ra/esse/models/element.py +1 -1
  11. mat3ra/esse/models/methods_directory/physical/psp/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py +3 -0
  12. mat3ra/esse/models/methods_directory/physical/psp/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py +31 -0
  13. mat3ra/esse/models/methods_directory/physical/psp/__init__.py +23 -1
  14. mat3ra/esse/models/methods_directory/physical/psp/file/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py +3 -0
  15. mat3ra/esse/models/methods_directory/physical/psp/file/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py +31 -0
  16. mat3ra/esse/models/methods_directory/physical/psp/file.py +23 -1
  17. mat3ra/esse/models/methods_directory/physical/psp/file_data_item/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py +3 -0
  18. mat3ra/esse/models/methods_directory/physical/psp/file_data_item/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py +31 -0
  19. mat3ra/esse/models/methods_directory/physical/psp/file_data_item.py +23 -1
  20. mat3ra/esse/models/properties_directory/elemental/ionization_potential.py +1 -1
  21. mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py +1 -1
  22. mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py +1 -1
  23. mat3ra/esse/models/properties_directory/non_scalar/band_structure.py +1 -1
  24. mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +1 -1
  25. mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py +1 -1
  26. mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py +1 -1
  27. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +1 -1
  28. mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +1 -1
  29. mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +1 -1
  30. mat3ra/esse/models/properties_directory/scalar/formation_energy.py +1 -1
  31. mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +1 -1
  32. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +1 -1
  33. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +1 -1
  34. mat3ra/esse/models/properties_directory/scalar/total_energy.py +1 -1
  35. mat3ra/esse/models/properties_directory/scalar/total_force.py +1 -1
  36. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +1 -1
  37. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +1 -1
  38. mat3ra/esse/models/properties_directory/structural/atomic_forces.py +1 -1
  39. mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py +1 -1
  40. mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +1 -1
  41. {mat3ra_esse-2025.4.3.post0.dist-info → mat3ra_esse-2025.4.15.post0.dist-info}/METADATA +3 -2
  42. {mat3ra_esse-2025.4.3.post0.dist-info → mat3ra_esse-2025.4.15.post0.dist-info}/RECORD +45 -34
  43. {mat3ra_esse-2025.4.3.post0.dist-info → mat3ra_esse-2025.4.15.post0.dist-info}/WHEEL +0 -0
  44. {mat3ra_esse-2025.4.3.post0.dist-info → mat3ra_esse-2025.4.15.post0.dist-info}/licenses/LICENSE.md +0 -0
  45. {mat3ra_esse-2025.4.3.post0.dist-info → mat3ra_esse-2025.4.15.post0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,27 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: core/reusable/accuracy_level.json
3
+ # version: 0.25.5
4
+
5
+ from __future__ import annotations
6
+
7
+ from typing import Optional
8
+
9
+ from pydantic import BaseModel, ConfigDict
10
+
11
+
12
+ class ReusableAccuracyLevelsSchema(BaseModel):
13
+ model_config = ConfigDict(
14
+ extra="forbid",
15
+ )
16
+ standard: Optional[float] = None
17
+ """
18
+ Parameter value for standard or default accuracy calculation.
19
+ """
20
+ high: Optional[float] = None
21
+ """
22
+ Parameter value for high precision calculation.
23
+ """
24
+ low: Optional[float] = None
25
+ """
26
+ Parameter value for low precision calculation.
27
+ """
@@ -21,7 +21,7 @@ class Units(Enum):
21
21
  J_mol = "J/mol"
22
22
  hartree = "hartree"
23
23
  cm_1 = "cm-1"
24
- rydberg = "rydberg"
24
+ Ry = "Ry"
25
25
  eV_atom = "eV/atom"
26
26
 
27
27
 
@@ -16,7 +16,7 @@ class Units(Enum):
16
16
  J_mol = "J/mol"
17
17
  hartree = "hartree"
18
18
  cm_1 = "cm-1"
19
- rydberg = "rydberg"
19
+ Ry = "Ry"
20
20
  eV_atom = "eV/atom"
21
21
 
22
22
 
@@ -0,0 +1,31 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: core/reusable/energy_accuracy_levels.json
3
+ # version: 0.28.5
4
+
5
+ from __future__ import annotations
6
+
7
+ from enum import Enum
8
+
9
+ from pydantic import BaseModel
10
+
11
+
12
+ class Unit(Enum):
13
+ Ry = "Ry"
14
+
15
+
16
+ class AccuracyLevel(Enum):
17
+ standard = "standard"
18
+ low = "low"
19
+ high = "high"
20
+
21
+
22
+ class FieldUsedForSuggestedWavefunctionAndChargeDensityCutoffs(BaseModel):
23
+ unit: Unit
24
+ """
25
+ Unit of the energy value corresponding to a accuracy_level. The values are expressed in Ry.
26
+ """
27
+ accuracy_level: AccuracyLevel
28
+ """
29
+ Accuracy level determines suggested scalar value.
30
+ """
31
+ value: float
@@ -0,0 +1,31 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: core/reusable/energy_accuracy_levels.json
3
+ # version: 0.28.5
4
+
5
+ from __future__ import annotations
6
+
7
+ from enum import Enum
8
+
9
+ from pydantic import BaseModel
10
+
11
+
12
+ class AccuracyLevel(Enum):
13
+ standard = "standard"
14
+ low = "low"
15
+ high = "high"
16
+
17
+
18
+ class Unit(Enum):
19
+ Ry = "Ry"
20
+
21
+
22
+ class ReusableSchemaForAccuracyLevelsWithValueAndEnergyUnit(BaseModel):
23
+ accuracy_level: AccuracyLevel
24
+ """
25
+ Parameter value suitable for a specific accuracy level.
26
+ """
27
+ unit: Unit
28
+ """
29
+ Unit of the energy value corresponding to a accuracy_level. The values are expressed in Ry.
30
+ """
31
+ value: float
@@ -0,0 +1,23 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: core/reusable/scalar_with_accuracy_levels.json
3
+ # version: 0.28.5
4
+
5
+ from __future__ import annotations
6
+
7
+ from enum import Enum
8
+
9
+ from pydantic import BaseModel
10
+
11
+
12
+ class AccuracyLevel(Enum):
13
+ standard = "standard"
14
+ low = "low"
15
+ high = "high"
16
+
17
+
18
+ class ReusableSchemaForScalarValuesWithAccuracyLevels(BaseModel):
19
+ accuracy_level: AccuracyLevel
20
+ """
21
+ Accuracy level determines suggested scalar value.
22
+ """
23
+ value: float
@@ -52,7 +52,7 @@ class Units21(Enum):
52
52
  J_mol = "J/mol"
53
53
  hartree = "hartree"
54
54
  cm_1 = "cm-1"
55
- rydberg = "rydberg"
55
+ Ry = "Ry"
56
56
  eV_atom = "eV/atom"
57
57
 
58
58
 
@@ -0,0 +1,31 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: methods_directory/physical/psp.json
3
+ # version: 0.28.5
4
+
5
+ from __future__ import annotations
6
+
7
+ from enum import Enum
8
+
9
+ from pydantic import BaseModel
10
+
11
+
12
+ class Unit(Enum):
13
+ Ry = "Ry"
14
+
15
+
16
+ class AccuracyLevel(Enum):
17
+ standard = "standard"
18
+ low = "low"
19
+ high = "high"
20
+
21
+
22
+ class FieldUsedForSuggestedWavefunctionAndChargeDensityCutoffs(BaseModel):
23
+ unit: Unit
24
+ """
25
+ Unit of the energy value corresponding to a accuracy_level. The values are expressed in Ry.
26
+ """
27
+ accuracy_level: AccuracyLevel
28
+ """
29
+ Accuracy level determines suggested scalar value.
30
+ """
31
+ value: float
@@ -7,7 +7,11 @@ from __future__ import annotations
7
7
  from enum import Enum
8
8
  from typing import Any, Dict, List, Optional, Union
9
9
 
10
- from pydantic import BaseModel, Field, confloat, conint, constr
10
+ from pydantic import BaseModel, ConfigDict, Field, confloat, conint, constr
11
+
12
+ from ..Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e import (
13
+ g,
14
+ )
11
15
 
12
16
 
13
17
  class SlugifiedEntry(BaseModel):
@@ -106,6 +110,20 @@ class Name(Enum):
106
110
  pseudopotential = "pseudopotential"
107
111
 
108
112
 
113
+ class Cutoffs(BaseModel):
114
+ model_config = ConfigDict(
115
+ extra="forbid",
116
+ )
117
+ wavefunction: Optional[List[g.FieldUsedForSuggestedWavefunctionAndChargeDensityCutoffs]] = None
118
+ """
119
+ Energy cutoff values for wavefunction plane wave expansion.
120
+ """
121
+ density: Optional[List[g.FieldUsedForSuggestedWavefunctionAndChargeDensityCutoffs]] = None
122
+ """
123
+ Energy cutoff values for charge density plane wave expansion.
124
+ """
125
+
126
+
109
127
  class FileDataItem(BaseModel):
110
128
  element: str
111
129
  """
@@ -145,6 +163,10 @@ class FileDataItem(BaseModel):
145
163
  """
146
164
  name of the data category
147
165
  """
166
+ cutoffs: Optional[Cutoffs] = None
167
+ """
168
+ Suggested cutoff values for wave function and charge density.
169
+ """
148
170
 
149
171
 
150
172
  class Source(BaseModel):
@@ -0,0 +1,31 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: methods_directory/physical/psp/file.json
3
+ # version: 0.28.5
4
+
5
+ from __future__ import annotations
6
+
7
+ from enum import Enum
8
+
9
+ from pydantic import BaseModel
10
+
11
+
12
+ class Unit(Enum):
13
+ Ry = "Ry"
14
+
15
+
16
+ class AccuracyLevel(Enum):
17
+ standard = "standard"
18
+ low = "low"
19
+ high = "high"
20
+
21
+
22
+ class FieldUsedForSuggestedWavefunctionAndChargeDensityCutoffs(BaseModel):
23
+ unit: Unit
24
+ """
25
+ Unit of the energy value corresponding to a accuracy_level. The values are expressed in Ry.
26
+ """
27
+ accuracy_level: AccuracyLevel
28
+ """
29
+ Accuracy level determines suggested scalar value.
30
+ """
31
+ value: float
@@ -7,7 +7,11 @@ from __future__ import annotations
7
7
  from enum import Enum
8
8
  from typing import Any, Dict, List, Optional
9
9
 
10
- from pydantic import BaseModel, Field, confloat, conint, constr
10
+ from pydantic import BaseModel, ConfigDict, Field, confloat, conint, constr
11
+
12
+ from .Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e import (
13
+ g,
14
+ )
11
15
 
12
16
 
13
17
  class Slug(Enum):
@@ -52,6 +56,20 @@ class Name(Enum):
52
56
  pseudopotential = "pseudopotential"
53
57
 
54
58
 
59
+ class Cutoffs(BaseModel):
60
+ model_config = ConfigDict(
61
+ extra="forbid",
62
+ )
63
+ wavefunction: Optional[List[g.FieldUsedForSuggestedWavefunctionAndChargeDensityCutoffs]] = None
64
+ """
65
+ Energy cutoff values for wavefunction plane wave expansion.
66
+ """
67
+ density: Optional[List[g.FieldUsedForSuggestedWavefunctionAndChargeDensityCutoffs]] = None
68
+ """
69
+ Energy cutoff values for charge density plane wave expansion.
70
+ """
71
+
72
+
55
73
  class FileDataItem(BaseModel):
56
74
  element: str
57
75
  """
@@ -91,6 +109,10 @@ class FileDataItem(BaseModel):
91
109
  """
92
110
  name of the data category
93
111
  """
112
+ cutoffs: Optional[Cutoffs] = None
113
+ """
114
+ Suggested cutoff values for wave function and charge density.
115
+ """
94
116
 
95
117
 
96
118
  class Source(BaseModel):
@@ -0,0 +1,31 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: methods_directory/physical/psp/file_data_item.json
3
+ # version: 0.28.5
4
+
5
+ from __future__ import annotations
6
+
7
+ from enum import Enum
8
+
9
+ from pydantic import BaseModel
10
+
11
+
12
+ class Unit(Enum):
13
+ Ry = "Ry"
14
+
15
+
16
+ class AccuracyLevel(Enum):
17
+ standard = "standard"
18
+ low = "low"
19
+ high = "high"
20
+
21
+
22
+ class FieldUsedForSuggestedWavefunctionAndChargeDensityCutoffs(BaseModel):
23
+ unit: Unit
24
+ """
25
+ Unit of the energy value corresponding to a accuracy_level. The values are expressed in Ry.
26
+ """
27
+ accuracy_level: AccuracyLevel
28
+ """
29
+ Accuracy level determines suggested scalar value.
30
+ """
31
+ value: float
@@ -7,7 +7,11 @@ from __future__ import annotations
7
7
  from enum import Enum
8
8
  from typing import List, Optional
9
9
 
10
- from pydantic import BaseModel, Field, confloat, conint, constr
10
+ from pydantic import BaseModel, ConfigDict, Field, confloat, conint, constr
11
+
12
+ from .Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e import (
13
+ g,
14
+ )
11
15
 
12
16
 
13
17
  class Type(Enum):
@@ -48,6 +52,20 @@ class Name(Enum):
48
52
  pseudopotential = "pseudopotential"
49
53
 
50
54
 
55
+ class Cutoffs(BaseModel):
56
+ model_config = ConfigDict(
57
+ extra="forbid",
58
+ )
59
+ wavefunction: Optional[List[g.FieldUsedForSuggestedWavefunctionAndChargeDensityCutoffs]] = None
60
+ """
61
+ Energy cutoff values for wavefunction plane wave expansion.
62
+ """
63
+ density: Optional[List[g.FieldUsedForSuggestedWavefunctionAndChargeDensityCutoffs]] = None
64
+ """
65
+ Energy cutoff values for charge density plane wave expansion.
66
+ """
67
+
68
+
51
69
  class FileDataItem(BaseModel):
52
70
  element: str
53
71
  """
@@ -87,3 +105,7 @@ class FileDataItem(BaseModel):
87
105
  """
88
106
  name of the data category
89
107
  """
108
+ cutoffs: Optional[Cutoffs] = None
109
+ """
110
+ Suggested cutoff values for wave function and charge density.
111
+ """
@@ -20,7 +20,7 @@ class Units(Enum):
20
20
  J_mol = "J/mol"
21
21
  hartree = "hartree"
22
22
  cm_1 = "cm-1"
23
- rydberg = "rydberg"
23
+ Ry = "Ry"
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
@@ -48,7 +48,7 @@ class Units4(Enum):
48
48
  J_mol = "J/mol"
49
49
  hartree = "hartree"
50
50
  cm_1 = "cm-1"
51
- rydberg = "rydberg"
51
+ Ry = "Ry"
52
52
  eV_atom = "eV/atom"
53
53
 
54
54
 
@@ -25,7 +25,7 @@ class Units(Enum):
25
25
  J_mol = "J/mol"
26
26
  hartree = "hartree"
27
27
  cm_1 = "cm-1"
28
- rydberg = "rydberg"
28
+ Ry = "Ry"
29
29
  eV_atom = "eV/atom"
30
30
 
31
31
 
@@ -40,7 +40,7 @@ class Units8(Enum):
40
40
  J_mol = "J/mol"
41
41
  hartree = "hartree"
42
42
  cm_1 = "cm-1"
43
- rydberg = "rydberg"
43
+ Ry = "Ry"
44
44
  eV_atom = "eV/atom"
45
45
 
46
46
 
@@ -20,7 +20,7 @@ class Units(Enum):
20
20
  J_mol = "J/mol"
21
21
  hartree = "hartree"
22
22
  cm_1 = "cm-1"
23
- rydberg = "rydberg"
23
+ Ry = "Ry"
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
@@ -35,7 +35,7 @@ class Units(Enum):
35
35
  J_mol = "J/mol"
36
36
  hartree = "hartree"
37
37
  cm_1 = "cm-1"
38
- rydberg = "rydberg"
38
+ Ry = "Ry"
39
39
  eV_atom = "eV/atom"
40
40
 
41
41
 
@@ -35,7 +35,7 @@ class Units(Enum):
35
35
  J_mol = "J/mol"
36
36
  hartree = "hartree"
37
37
  cm_1 = "cm-1"
38
- rydberg = "rydberg"
38
+ Ry = "Ry"
39
39
  eV_atom = "eV/atom"
40
40
 
41
41
 
@@ -137,7 +137,7 @@ class Units(Enum):
137
137
  J_mol = "J/mol"
138
138
  hartree = "hartree"
139
139
  cm_1 = "cm-1"
140
- rydberg = "rydberg"
140
+ Ry = "Ry"
141
141
  eV_atom = "eV/atom"
142
142
 
143
143
 
@@ -20,7 +20,7 @@ class Units(Enum):
20
20
  J_mol = "J/mol"
21
21
  hartree = "hartree"
22
22
  cm_1 = "cm-1"
23
- rydberg = "rydberg"
23
+ Ry = "Ry"
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
@@ -20,7 +20,7 @@ class Units(Enum):
20
20
  J_mol = "J/mol"
21
21
  hartree = "hartree"
22
22
  cm_1 = "cm-1"
23
- rydberg = "rydberg"
23
+ Ry = "Ry"
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
@@ -20,7 +20,7 @@ class Units(Enum):
20
20
  J_mol = "J/mol"
21
21
  hartree = "hartree"
22
22
  cm_1 = "cm-1"
23
- rydberg = "rydberg"
23
+ Ry = "Ry"
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
@@ -20,7 +20,7 @@ class Units(Enum):
20
20
  J_mol = "J/mol"
21
21
  hartree = "hartree"
22
22
  cm_1 = "cm-1"
23
- rydberg = "rydberg"
23
+ Ry = "Ry"
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
@@ -20,7 +20,7 @@ class Units(Enum):
20
20
  J_mol = "J/mol"
21
21
  hartree = "hartree"
22
22
  cm_1 = "cm-1"
23
- rydberg = "rydberg"
23
+ Ry = "Ry"
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
@@ -20,7 +20,7 @@ class Units(Enum):
20
20
  J_mol = "J/mol"
21
21
  hartree = "hartree"
22
22
  cm_1 = "cm-1"
23
- rydberg = "rydberg"
23
+ Ry = "Ry"
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
@@ -20,7 +20,7 @@ class Units(Enum):
20
20
  J_mol = "J/mol"
21
21
  hartree = "hartree"
22
22
  cm_1 = "cm-1"
23
- rydberg = "rydberg"
23
+ Ry = "Ry"
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
@@ -17,7 +17,7 @@ class Name(Enum):
17
17
  class Units(Enum):
18
18
  eV_bohr = "eV/bohr"
19
19
  eV_angstrom = "eV/angstrom"
20
- rydberg_a_u_ = "rydberg/a.u."
20
+ Ry_a_u_ = "Ry/a.u."
21
21
  newton = "newton"
22
22
  kg_m_s_2 = "kg*m/s^2"
23
23
  eV_a_u_ = "eV/a.u."
@@ -20,7 +20,7 @@ class Units(Enum):
20
20
  J_mol = "J/mol"
21
21
  hartree = "hartree"
22
22
  cm_1 = "cm-1"
23
- rydberg = "rydberg"
23
+ Ry = "Ry"
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
@@ -20,7 +20,7 @@ class Units(Enum):
20
20
  J_mol = "J/mol"
21
21
  hartree = "hartree"
22
22
  cm_1 = "cm-1"
23
- rydberg = "rydberg"
23
+ Ry = "Ry"
24
24
  eV_atom = "eV/atom"
25
25
 
26
26
 
@@ -25,7 +25,7 @@ class AtomicVectorsSchemaItem(BaseModel):
25
25
  class Units(Enum):
26
26
  eV_bohr = "eV/bohr"
27
27
  eV_angstrom = "eV/angstrom"
28
- rydberg_a_u_ = "rydberg/a.u."
28
+ Ry_a_u_ = "Ry/a.u."
29
29
  newton = "newton"
30
30
  kg_m_s_2 = "kg*m/s^2"
31
31
  eV_a_u_ = "eV/a.u."
@@ -16,7 +16,7 @@ class Name(Enum):
16
16
 
17
17
  class Units(Enum):
18
18
  eV = "eV"
19
- rydberg = "rydberg"
19
+ Ry = "Ry"
20
20
  hartree = "hartree"
21
21
 
22
22
 
@@ -20,7 +20,7 @@ class Units(Enum):
20
20
 
21
21
  class Units32(Enum):
22
22
  eV = "eV"
23
- rydberg = "rydberg"
23
+ Ry = "Ry"
24
24
  hartree = "hartree"
25
25
 
26
26
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mat3ra-esse
3
- Version: 2025.4.3.post0
3
+ Version: 2025.4.15.post0
4
4
  Summary: Excellent Source of Schemas and Examples.
5
5
  Author-email: "Exabyte Inc." <info@mat3ra.com>
6
6
  License: # LICENSE
@@ -29,7 +29,8 @@ License-File: LICENSE.md
29
29
  Requires-Dist: exabyte-json-include>=2023.12.23.post0
30
30
  Requires-Dist: jsonschema>=2.6.0
31
31
  Provides-Extra: dev
32
- Requires-Dist: datamodel-code-generator>=0.25.5; extra == "dev"
32
+ Requires-Dist: datamodel-code-generator==0.28.5; extra == "dev"
33
+ Requires-Dist: pre-commit>=4.1.0; extra == "dev"
33
34
  Provides-Extra: tests
34
35
  Requires-Dist: coverage[toml]>=5.3; extra == "tests"
35
36
  Requires-Dist: parameterized>=0.9.0; extra == "tests"