mat3ra-esse 2025.8.9.post0__py3-none-any.whl → 2025.8.14.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.
- mat3ra/esse/data/schemas.py +1 -1
- mat3ra/esse/models/software/template.py +2 -1
- mat3ra/esse/models/software_directory/modeling/unit/execution.py +1 -1
- mat3ra/esse/models/software_directory/scripting/unit/execution.py +1 -1
- mat3ra/esse/models/workflow/unit/input/_input.py +1 -1
- mat3ra/esse/models/workflow/unit/input/_inputItem.py +3 -1
- {mat3ra_esse-2025.8.9.post0.dist-info → mat3ra_esse-2025.8.14.post0.dist-info}/METADATA +1 -1
- {mat3ra_esse-2025.8.9.post0.dist-info → mat3ra_esse-2025.8.14.post0.dist-info}/RECORD +11 -11
- {mat3ra_esse-2025.8.9.post0.dist-info → mat3ra_esse-2025.8.14.post0.dist-info}/WHEEL +0 -0
- {mat3ra_esse-2025.8.9.post0.dist-info → mat3ra_esse-2025.8.14.post0.dist-info}/licenses/LICENSE.md +0 -0
- {mat3ra_esse-2025.8.9.post0.dist-info → mat3ra_esse-2025.8.14.post0.dist-info}/top_level.txt +0 -0
|
@@ -21,6 +21,7 @@ class TemplateSchema(BaseModel):
|
|
|
21
21
|
applicationVersion: Optional[str] = None
|
|
22
22
|
executableName: Optional[str] = None
|
|
23
23
|
contextProviders: Optional[List[NameResultSchema]] = None
|
|
24
|
+
isManuallyChanged: Optional[bool] = None
|
|
24
25
|
name: str
|
|
25
26
|
"""
|
|
26
27
|
Input file name. e.g. pw_scf.in
|
|
@@ -29,7 +30,7 @@ class TemplateSchema(BaseModel):
|
|
|
29
30
|
"""
|
|
30
31
|
Content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
31
32
|
"""
|
|
32
|
-
rendered: str
|
|
33
|
+
rendered: Optional[str] = None
|
|
33
34
|
"""
|
|
34
35
|
Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
35
36
|
"""
|
|
@@ -200,7 +200,7 @@ class ExecutionUnitInputItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
|
|
|
200
200
|
"""
|
|
201
201
|
Content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
202
202
|
"""
|
|
203
|
-
rendered: str
|
|
203
|
+
rendered: Optional[str] = None
|
|
204
204
|
"""
|
|
205
205
|
Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
206
206
|
"""
|
|
@@ -200,7 +200,7 @@ class ExecutionUnitInputItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
|
|
|
200
200
|
"""
|
|
201
201
|
Content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
202
202
|
"""
|
|
203
|
-
rendered: str
|
|
203
|
+
rendered: Optional[str] = None
|
|
204
204
|
"""
|
|
205
205
|
Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
206
206
|
"""
|
|
@@ -18,7 +18,7 @@ class ExecutionUnitInputItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
|
|
|
18
18
|
"""
|
|
19
19
|
Content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
20
20
|
"""
|
|
21
|
-
rendered: str
|
|
21
|
+
rendered: Optional[str] = None
|
|
22
22
|
"""
|
|
23
23
|
Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
24
24
|
"""
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
7
|
+
from typing import Optional
|
|
8
|
+
|
|
7
9
|
from pydantic import BaseModel
|
|
8
10
|
|
|
9
11
|
|
|
@@ -16,7 +18,7 @@ class ExecutionUnitInputItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
|
|
|
16
18
|
"""
|
|
17
19
|
Content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
18
20
|
"""
|
|
19
|
-
rendered: str
|
|
21
|
+
rendered: Optional[str] = None
|
|
20
22
|
"""
|
|
21
23
|
Rendered content of the input file. e.g. &CONTROL calculation='scf' ...
|
|
22
24
|
"""
|
|
@@ -4,7 +4,7 @@ mat3ra/esse/utils.py,sha256=-FexdtkOYGEWmwJUwWDuJferibc7M1YzUH738Bffuxo,1727
|
|
|
4
4
|
mat3ra/esse/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
mat3ra/esse/data/examples.py,sha256=4RnMfttGXa_mRh7w5KHZS8RDpI2dIXPSGdQyWPLnbrY,145664
|
|
6
6
|
mat3ra/esse/data/properties.py,sha256=geWFIVIJbdn2Q_JG3Mz36oQ_dXeZZwnmlS_NgszvHUY,6099
|
|
7
|
-
mat3ra/esse/data/schemas.py,sha256=
|
|
7
|
+
mat3ra/esse/data/schemas.py,sha256=5xfSeOWHwZY7pBEIH-8ummGTFJPqOWwxAZvGsmIRfqA,3191669
|
|
8
8
|
mat3ra/esse/models/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
9
9
|
mat3ra/esse/models/element.py,sha256=xuuFQRP6wE4SFXggipRsAexGPo10DorQqoWUG_pUnPA,2950
|
|
10
10
|
mat3ra/esse/models/project.py,sha256=fqUckRBLyCzVc_77-EtQUg_zFDV_zTYfnLmOoE77zPE,1148
|
|
@@ -469,7 +469,7 @@ mat3ra/esse/models/software/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiO
|
|
|
469
469
|
mat3ra/esse/models/software/application.py,sha256=_GYziemq6s_Cqvra7qT-ZdT_ib168hlqA7GxRS-KLk8,1359
|
|
470
470
|
mat3ra/esse/models/software/executable.py,sha256=pLG2bpGO1baoOLNY1zK1AeNueSvSnJWqEVGRHejfex8,1630
|
|
471
471
|
mat3ra/esse/models/software/flavor.py,sha256=jfuIS4FACisUbagX3zvdRD16TpRnQ9eui-mLVWg1nno,2333
|
|
472
|
-
mat3ra/esse/models/software/template.py,sha256=
|
|
472
|
+
mat3ra/esse/models/software/template.py,sha256=i3kPaOabpVPGahMajLdhFc0O-umW-a-CkFAEWWHLJtE,1212
|
|
473
473
|
mat3ra/esse/models/software_directory/ml/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
474
474
|
mat3ra/esse/models/software_directory/ml/exabyteml.py,sha256=EZsHS_b2XShzzSP6DSW1L7v2THz6FlcN2Jj2kUYWiEA,582
|
|
475
475
|
mat3ra/esse/models/software_directory/ml/unit/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
@@ -492,13 +492,13 @@ mat3ra/esse/models/software_directory/modeling/vasp.py,sha256=nAutKdGw4rnzzPVE5u
|
|
|
492
492
|
mat3ra/esse/models/software_directory/modeling/espresso/__init__.py,sha256=buLYtcBmCwYAD0fUC05bRtfoeK2HAQsK04msdpDy6AI,808
|
|
493
493
|
mat3ra/esse/models/software_directory/modeling/espresso/arguments.py,sha256=MVMYJEb_qQ8IkQjj3vuMBe2z0iF1BKxPzdGNRUyNIhg,2028
|
|
494
494
|
mat3ra/esse/models/software_directory/modeling/unit/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
495
|
-
mat3ra/esse/models/software_directory/modeling/unit/execution.py,sha256=
|
|
495
|
+
mat3ra/esse/models/software_directory/modeling/unit/execution.py,sha256=aBJ0-jYS7S0PcxIcKbFKUJKcq2ccvInkceTnqmBGeY4,8132
|
|
496
496
|
mat3ra/esse/models/software_directory/scripting/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
497
497
|
mat3ra/esse/models/software_directory/scripting/jupyter_lab.py,sha256=SP5FwLVFrP4ah3u1ilvGfjhJaQSUjea187qvHiSGUi4,1734
|
|
498
498
|
mat3ra/esse/models/software_directory/scripting/python.py,sha256=_HxVAX-VE8FqkOFOz6rPdtgnpyiiGrwykim5sFBmRSM,2139
|
|
499
499
|
mat3ra/esse/models/software_directory/scripting/shell.py,sha256=SID-msgkNSCsCVm6Ln5Zw0xMRkieOM2s0JUEOLeQak8,2051
|
|
500
500
|
mat3ra/esse/models/software_directory/scripting/unit/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
501
|
-
mat3ra/esse/models/software_directory/scripting/unit/execution.py,sha256=
|
|
501
|
+
mat3ra/esse/models/software_directory/scripting/unit/execution.py,sha256=oWxk_VRoT13oy60ciGdL-gjzy1J6jY7qpCWCTfWo8m4,8101
|
|
502
502
|
mat3ra/esse/models/system/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
503
503
|
mat3ra/esse/models/system/_material.py,sha256=LHmGZ_o56EHi9BfVRwRpDNzDZQOYywWl_eb4vIEZzPc,522
|
|
504
504
|
mat3ra/esse/models/system/_parent_job.py,sha256=14FFwVJCaWy4EOMmRzN-qSHOpJpQYx6NbeKl7tMGzOs,510
|
|
@@ -551,8 +551,8 @@ mat3ra/esse/models/workflow/unit/processing.py,sha256=DyJe3LQ6k1CWmezkc0Vg5aB3_W
|
|
|
551
551
|
mat3ra/esse/models/workflow/unit/reduce.py,sha256=nSu3YZOuruqwdzWxoTL8m8R5d5NIx9D3i27TqHvisW4,2992
|
|
552
552
|
mat3ra/esse/models/workflow/unit/subworkflow.py,sha256=PkZFIbiW8Vhi8BTn1r8gi5f3T8GKVGK1BRCyFW9XYXE,2648
|
|
553
553
|
mat3ra/esse/models/workflow/unit/input/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
554
|
-
mat3ra/esse/models/workflow/unit/input/_input.py,sha256=
|
|
555
|
-
mat3ra/esse/models/workflow/unit/input/_inputItem.py,sha256=
|
|
554
|
+
mat3ra/esse/models/workflow/unit/input/_input.py,sha256=uF1-EJ3eTOttOKlLiMI86ABg3yE3tFr2ayneWX9cRZU,1319
|
|
555
|
+
mat3ra/esse/models/workflow/unit/input/_inputItem.py,sha256=1U7k57TiosIR0ANCxQuKvDYW5KKNmLZ9Yn0r2pzqnMg,584
|
|
556
556
|
mat3ra/esse/models/workflow/unit/input/_inputItemId.py,sha256=Fz8Nad2oYiSWv4_r_udzjTAn3klBXaM32Vx6Nx5h6mQ,555
|
|
557
557
|
mat3ra/esse/models/workflow/unit/input/_inputItemScope.py,sha256=fTCCX3tnERlU7mUd24ufRor3ZEFUKyaRZ-noroZ_KF4,392
|
|
558
558
|
mat3ra/esse/models/workflow/unit/input/_map_input/__init__.py,sha256=EWese8D4VOvFbvTGxPS19Iw0RGu9uVo9r1VddFdYWnc,469
|
|
@@ -567,8 +567,8 @@ mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIb
|
|
|
567
567
|
mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
|
|
568
568
|
mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
|
|
569
569
|
mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
|
|
570
|
-
mat3ra_esse-2025.8.
|
|
571
|
-
mat3ra_esse-2025.8.
|
|
572
|
-
mat3ra_esse-2025.8.
|
|
573
|
-
mat3ra_esse-2025.8.
|
|
574
|
-
mat3ra_esse-2025.8.
|
|
570
|
+
mat3ra_esse-2025.8.14.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
|
|
571
|
+
mat3ra_esse-2025.8.14.post0.dist-info/METADATA,sha256=poRiM-KvHmK0zQsMMzm4IGUipHv5_LEmUTDBnpa5gl0,9013
|
|
572
|
+
mat3ra_esse-2025.8.14.post0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
573
|
+
mat3ra_esse-2025.8.14.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
|
|
574
|
+
mat3ra_esse-2025.8.14.post0.dist-info/RECORD,,
|
|
File without changes
|
{mat3ra_esse-2025.8.9.post0.dist-info → mat3ra_esse-2025.8.14.post0.dist-info}/licenses/LICENSE.md
RENAMED
|
File without changes
|
{mat3ra_esse-2025.8.9.post0.dist-info → mat3ra_esse-2025.8.14.post0.dist-info}/top_level.txt
RENAMED
|
File without changes
|