fmu-manipulation-toolbox 1.9.2b1__py3-none-any.whl → 1.9.2b3__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.
Files changed (31) hide show
  1. fmu_manipulation_toolbox/__main__.py +2 -2
  2. fmu_manipulation_toolbox/__version__.py +1 -1
  3. fmu_manipulation_toolbox/assembly.py +12 -8
  4. fmu_manipulation_toolbox/checker.py +4 -2
  5. fmu_manipulation_toolbox/cli/datalog2pcap.py +143 -0
  6. fmu_manipulation_toolbox/cli/fmucontainer.py +27 -19
  7. fmu_manipulation_toolbox/cli/fmusplit.py +5 -2
  8. fmu_manipulation_toolbox/cli/fmutool.py +8 -3
  9. fmu_manipulation_toolbox/cli/utils.py +11 -1
  10. fmu_manipulation_toolbox/container.py +33 -6
  11. fmu_manipulation_toolbox/operations.py +4 -3
  12. fmu_manipulation_toolbox/resources/darwin64/container.dylib +0 -0
  13. fmu_manipulation_toolbox/resources/linux32/client_sm.so +0 -0
  14. fmu_manipulation_toolbox/resources/linux64/client_sm.so +0 -0
  15. fmu_manipulation_toolbox/resources/linux64/container.so +0 -0
  16. fmu_manipulation_toolbox/resources/win32/client_sm.dll +0 -0
  17. fmu_manipulation_toolbox/resources/win32/server_sm.exe +0 -0
  18. fmu_manipulation_toolbox/resources/win64/client_sm.dll +0 -0
  19. fmu_manipulation_toolbox/resources/win64/container.dll +0 -0
  20. fmu_manipulation_toolbox/resources/win64/server_sm.exe +0 -0
  21. fmu_manipulation_toolbox/split.py +10 -1
  22. fmu_manipulation_toolbox/version.py +1 -1
  23. fmu_manipulation_toolbox-1.9.2b3.dist-info/METADATA +42 -0
  24. {fmu_manipulation_toolbox-1.9.2b1.dist-info → fmu_manipulation_toolbox-1.9.2b3.dist-info}/RECORD +28 -29
  25. {fmu_manipulation_toolbox-1.9.2b1.dist-info → fmu_manipulation_toolbox-1.9.2b3.dist-info}/entry_points.txt +2 -1
  26. {fmu_manipulation_toolbox-1.9.2b1.dist-info → fmu_manipulation_toolbox-1.9.2b3.dist-info}/licenses/LICENSE.txt +1 -1
  27. fmu_manipulation_toolbox/gui.py +0 -749
  28. fmu_manipulation_toolbox/gui_style.py +0 -252
  29. fmu_manipulation_toolbox-1.9.2b1.dist-info/METADATA +0 -30
  30. {fmu_manipulation_toolbox-1.9.2b1.dist-info → fmu_manipulation_toolbox-1.9.2b3.dist-info}/WHEEL +0 -0
  31. {fmu_manipulation_toolbox-1.9.2b1.dist-info → fmu_manipulation_toolbox-1.9.2b3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: fmu_manipulation_toolbox
3
+ Version: 1.9.2b3
4
+ Summary: FMU Manipulation Toolbox is a python package which helps to analyze, modify or combine Functional Mock-up Units (FMUs) without recompilation.
5
+ Home-page: https://github.com/grouperenault/fmu_manipulation_toolbox/
6
+ Author: Nicolas.LAURENT@Renault.com
7
+ License: BSD-2-Clause
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE.txt
11
+ Requires-Dist: PySide6>=6.8.0
12
+ Requires-Dist: xmlschema>=3.3.1
13
+ Requires-Dist: elementpath>=4.4.0
14
+ Requires-Dist: colorama>=0.4.6
15
+ Dynamic: author
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: license
20
+ Dynamic: license-file
21
+ Dynamic: requires-dist
22
+ Dynamic: requires-python
23
+ Dynamic: summary
24
+
25
+ FMU Manipulation Toolbox is a python package which helps to analyze, modify or combine
26
+ [Functional Mock-up Units (FMUs)](https://fmi-standard.org/) without recompilation. It is highly customizable and comes with
27
+ a Python API.
28
+
29
+ FMU Manipulation Toolbox can be used in different ways:
30
+ - Using a Graphical User Interface: suitable for end users
31
+ - Using a Command Line Interface: useful for scripting and automation
32
+ - Using a Python API: the most efficient option for automation (CI/CD, transformation scripts, ...))
33
+
34
+ Major features:
35
+ - Analyze FMU content: list ports and their attributes, check compliance of `ModelDescription.xml` with XSD, etc.
36
+ - Alter FMU by modifying its `modelDescription.xml` file. NOTE: manipulating this file can be a risky.
37
+ When possible, it is preferable to communicate with the FMU developer and adapt the FMU generation process.
38
+ - Add binary interfaces. Typical use case is porting a 32-bit FMUs to 64-bit systems (or vice et versa).
39
+ - Combine FMUs into [FMU Containers](doc/container.md) and allow your favourite FMI tool to orchestrate complex assembly of FMUs.
40
+
41
+ FMI versions 2.0 and 3.0 are supported.
42
+
@@ -1,23 +1,22 @@
1
1
  fmu_manipulation_toolbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- fmu_manipulation_toolbox/__main__.py,sha256=Ixgo_5YS_khXseMujNPsVzaerkHPugLPYPV7FIi5umo,364
3
- fmu_manipulation_toolbox/__version__.py,sha256=eFoY0dV9P-7aIw41HjOXEMNKuPwNW0s1_trJUzchB-g,11
4
- fmu_manipulation_toolbox/assembly.py,sha256=-i9iQLKiPyjdFZyxHmB1FgL3NYmRPfTWVs9lf3fC5sE,27022
5
- fmu_manipulation_toolbox/checker.py,sha256=RmIYd6s4p2S9wdv-uSILfVm__QTZSUJCiq6hr_G5rxA,3119
6
- fmu_manipulation_toolbox/container.py,sha256=HMi3tuMjdrlgVkbzjp5_48OM-iqNFnqc1OsR8O0e9mE,55634
7
- fmu_manipulation_toolbox/gui.py,sha256=-DyWY2MoECr3FGRYdS60Ltoayhd3O0uOCtkQ4YXE8xc,29201
8
- fmu_manipulation_toolbox/gui_style.py,sha256=s6WdrnNd_lCMWhuBf5LKK8wrfLXCU7pFTLUfvqkJVno,6633
2
+ fmu_manipulation_toolbox/__main__.py,sha256=g0ZhVsMiAs5KnhyVNwTe01N2PQjAg7F9YCnXHZB-HwA,356
3
+ fmu_manipulation_toolbox/__version__.py,sha256=vSeu0JAhY6t02nCo5EseN6q_Sda8XNzKJeVB4BF160c,11
4
+ fmu_manipulation_toolbox/assembly.py,sha256=QmFihza_I0hK0Ia6tWbjdZeoREhveLrv3d7ERrBUaDk,27217
5
+ fmu_manipulation_toolbox/checker.py,sha256=Dh47b3blibCWjHCeZ61Y_w9Ug0PWvEuSiemZtp-llQA,3141
6
+ fmu_manipulation_toolbox/container.py,sha256=AI2eEapQQDU1uEhAxKKb9mOTRigatRCJvvXir-l6aBQ,56912
9
7
  fmu_manipulation_toolbox/help.py,sha256=j8xmnCrwQpaW-SZ8hSqA1dlTXgaqzQWc4Yr3RH_oqck,6012
10
8
  fmu_manipulation_toolbox/ls.py,sha256=wmyoKrvDLXpL-PFz6cUhLLqxDMD5E9L_P4KswWpQHsk,975
11
- fmu_manipulation_toolbox/operations.py,sha256=rfeZiCHuVr5-M4lC496feYl1nrRBheP_W9AsJHtMm58,21094
9
+ fmu_manipulation_toolbox/operations.py,sha256=y3QDMiLaG1TUhIQ4r_onWp1kGm8QZaFfTOdQr0oC7_A,21177
12
10
  fmu_manipulation_toolbox/remoting.py,sha256=N25MDFkIcEWe9CIT1M4L9kea3j-8E7i2I1VOI6zIAdw,3876
13
- fmu_manipulation_toolbox/split.py,sha256=q6a5rZ4s7E24nf4BiebUuoneBEj9j293f2LiAaSDKnE,16345
11
+ fmu_manipulation_toolbox/split.py,sha256=6D99SAGNu4B3PSaSsliWc6Bb5aSBZMxL8t0v8TJBI3Y,16499
14
12
  fmu_manipulation_toolbox/terminals.py,sha256=mGGS4tdE6cJuz-2zvwc7drpmT0QJ7YPe8ENw2UGlEHA,5062
15
- fmu_manipulation_toolbox/version.py,sha256=OhBLkZ1-nhC77kyvffPNAf6m8OZe1bYTnNf_PWs1NvM,392
13
+ fmu_manipulation_toolbox/version.py,sha256=L26Cc3PH97SOa4G9yiYnafrdolK0G_DCQZZTvv3YXqI,392
16
14
  fmu_manipulation_toolbox/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- fmu_manipulation_toolbox/cli/fmucontainer.py,sha256=oYidLBvXyDApsY7JVGlCL5g35yc1F9Gr8tFjYY7077s,4981
18
- fmu_manipulation_toolbox/cli/fmusplit.py,sha256=EDRrj6aHVnyaj3W_4_DUxo84AyZxnRyNGXIad35eWFo,1668
19
- fmu_manipulation_toolbox/cli/fmutool.py,sha256=KUqhUO3NvRdzgY55aoPg7yF3_3sE1GANR6dx-XQAU1M,6043
20
- fmu_manipulation_toolbox/cli/utils.py,sha256=gNhdlFYSSNSb0fovzS0crnxgmqqKXe0KtoZZFhRKhfg,1375
15
+ fmu_manipulation_toolbox/cli/datalog2pcap.py,sha256=A0KNHVTzEvzKaT5HG0zgHVRC5G1bXoIbfLRXuvOsE-U,6080
16
+ fmu_manipulation_toolbox/cli/fmucontainer.py,sha256=ZLoC8QMVBVG2S3cdNthMIQ0gYIU9WUbYj8Aj2vxzyfs,5338
17
+ fmu_manipulation_toolbox/cli/fmusplit.py,sha256=sLzdxiC4R5hJYJo9F2TZOMrJOHcadqCvUo9KoCjUaxE,1773
18
+ fmu_manipulation_toolbox/cli/fmutool.py,sha256=E-CCymksBwGFlS3-zJ7DIDA8xIdp_synsxMDYXst8dc,6186
19
+ fmu_manipulation_toolbox/cli/utils.py,sha256=pvedN6cRiDkZ7RdPO1koBOZaGuydYhgcoO0-_QQpOoI,1601
21
20
  fmu_manipulation_toolbox/resources/checkbox-checked-disabled.png,sha256=FWIuyrXlaNLLePHfXj7j9ca5rT8Hgr14KCe1EqTCZyk,2288
22
21
  fmu_manipulation_toolbox/resources/checkbox-checked-hover.png,sha256=KNlV-d_aJNTTvUVXKGT9DBY30sIs2LwocLJrFKNKv8k,2419
23
22
  fmu_manipulation_toolbox/resources/checkbox-checked.png,sha256=gzyFqvRFsZixVh6ZlV4SMWUKzglY1rSn7SvJUKMVvtk,2411
@@ -35,7 +34,7 @@ fmu_manipulation_toolbox/resources/icon_fmu.png,sha256=EuygB2xcoM2WAfKKdyKG_UvTL
35
34
  fmu_manipulation_toolbox/resources/license.txt,sha256=5ODuU8g8pIkK-NMWXu_rjZ6k7gM7b-N2rmg87-2Kmqw,1583
36
35
  fmu_manipulation_toolbox/resources/mask.png,sha256=px1U4hQGL0AmZ4BQPknOVREpMpTSejbah3ntkpqAzFA,3008
37
36
  fmu_manipulation_toolbox/resources/model.png,sha256=EAf_HnZJe8zYGZygerG1MMt2U-tMMZlifzXPj4_iORA,208788
38
- fmu_manipulation_toolbox/resources/darwin64/container.dylib,sha256=LAXXvAWewT4P21esMyCy8DbkbrnSDggSgnS2NUTsrwc,213632
37
+ fmu_manipulation_toolbox/resources/darwin64/container.dylib,sha256=fqp6EDPyPUUhFDC4KDCo00ErfyyoSmoiz5ABDSifL-U,230624
39
38
  fmu_manipulation_toolbox/resources/fmi-2.0/fmi2Annotation.xsd,sha256=OGfyJtaJntKypX5KDpuZ-nV1oYLZ6HV16pkpKOmYox4,2731
40
39
  fmu_manipulation_toolbox/resources/fmi-2.0/fmi2AttributeGroups.xsd,sha256=HwyV7LBse-PQSv4z1xjmtzPU3Hjnv4mluq9YdSBNHMQ,3704
41
40
  fmu_manipulation_toolbox/resources/fmi-2.0/fmi2ModelDescription.xsd,sha256=JM4j_9q-pc40XYHb28jfT3iV3aYM5JLqD5aRjO72K1E,18939
@@ -55,19 +54,19 @@ fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Type.xsd,sha256=TaHRoUBIFtmdEwBKB
55
54
  fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Unit.xsd,sha256=CK_F2t5LfyQ6eSNJ8soTFMVK9DU8vD2WiMi2MQvjB0g,3746
56
55
  fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Variable.xsd,sha256=3YU-3q1-c-namz7sMe5cxnmOVOJsRSmfWR02PKv3xaU,19171
57
56
  fmu_manipulation_toolbox/resources/fmi-3.0/fmi3VariableDependency.xsd,sha256=YQSBwXt4IsDlyegY8bX-qQHGSfE5TipTPfo2g2yqq1c,3082
58
- fmu_manipulation_toolbox/resources/linux32/client_sm.so,sha256=OjdzO-OEU0UW1D1YvDouikjKAMWYv3f-tkLZ_qb80g4,34756
57
+ fmu_manipulation_toolbox/resources/linux32/client_sm.so,sha256=Ty7ZerSlOQweg51EVxCLLKnli2EalqmXf05Mnh_JLtU,34664
59
58
  fmu_manipulation_toolbox/resources/linux32/server_sm,sha256=gzKU0BTeaRkvhTMQtHHj3K8uYFyEdyGGn_mZy_jG9xo,21304
60
- fmu_manipulation_toolbox/resources/linux64/client_sm.so,sha256=UOcyFYhHJyLNmQoLdiBD75nzloBmk77g9i91QjdItL0,32592
61
- fmu_manipulation_toolbox/resources/linux64/container.so,sha256=426lYFuGlXmUGRhwDl-VW9_pFJO1RxrWbg6Wv-Fekdc,177032
59
+ fmu_manipulation_toolbox/resources/linux64/client_sm.so,sha256=PrKEimiEXw6jMZlvtIHeYaSrQgLhWq-9XqCXxD96zkE,32464
60
+ fmu_manipulation_toolbox/resources/linux64/container.so,sha256=QSyFbCqfByxXPIF-u60rFKZ1BtDzG26QHHN_GWPgxgg,189912
62
61
  fmu_manipulation_toolbox/resources/linux64/server_sm,sha256=MZn6vITN2qpBHYt_RaK2VnFFp00hk8fTALBHmXPtLwc,22608
63
- fmu_manipulation_toolbox/resources/win32/client_sm.dll,sha256=fk9hb9RJ9AqGLpw5jUHy743OGyHXlcYbYLSeJCPUQRg,17920
64
- fmu_manipulation_toolbox/resources/win32/server_sm.exe,sha256=LDtvrrmmyVPGBNOx4iljMcNYJuNlSZAf-kl_6hTxKu0,15360
65
- fmu_manipulation_toolbox/resources/win64/client_sm.dll,sha256=koFqnnDq-Oe_tlzfNuEGbSvXpFKz9fjPDt_xwaquQqw,21504
66
- fmu_manipulation_toolbox/resources/win64/container.dll,sha256=8OKu_SQABu-eEDm7YIFbcBmnhZolXoIRpmEaObsTHk8,141824
67
- fmu_manipulation_toolbox/resources/win64/server_sm.exe,sha256=Vq5CG6Ll2Pb06J9IKUpV-5VMHUaoALYizIB4PbVtgdc,18432
68
- fmu_manipulation_toolbox-1.9.2b1.dist-info/licenses/LICENSE.txt,sha256=c_862mzyk6ownO3Gt6cVs0-53IXLi_-ZEQFNDVabESw,1285
69
- fmu_manipulation_toolbox-1.9.2b1.dist-info/METADATA,sha256=tXtq9Rodjl3GQ6FOdB7SeGV_yv4htrFXpsict3ffsvo,1157
70
- fmu_manipulation_toolbox-1.9.2b1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
71
- fmu_manipulation_toolbox-1.9.2b1.dist-info/entry_points.txt,sha256=HjOZkflbI1IuSY8BpOZre20m24M4GDQGCJfPIa7NrlY,264
72
- fmu_manipulation_toolbox-1.9.2b1.dist-info/top_level.txt,sha256=9D_h-5BMjSqf9z-XFkbJL_bMppR2XNYW3WNuPkXou0k,25
73
- fmu_manipulation_toolbox-1.9.2b1.dist-info/RECORD,,
62
+ fmu_manipulation_toolbox/resources/win32/client_sm.dll,sha256=35hvSqIQVDIYk6fbqN_90Lg6rwJqk3SD0mwxyXBVi7U,17920
63
+ fmu_manipulation_toolbox/resources/win32/server_sm.exe,sha256=T7Juqe7mbig8TVVdIOXX6PejTL7o60V8-QAfgm4lA1I,15360
64
+ fmu_manipulation_toolbox/resources/win64/client_sm.dll,sha256=mEgQ-U3OSGXuD4D-obf14RfRDAVEU3x5Q1d1FCuVIkE,20992
65
+ fmu_manipulation_toolbox/resources/win64/container.dll,sha256=nxdh21lnohIhyNxDsDb6-vJ0yWagX0mDDNnfEXpioXc,152064
66
+ fmu_manipulation_toolbox/resources/win64/server_sm.exe,sha256=i1LesWTMSZcJX66RZ5qh2YkDCfnwuKj7i2VFQIql2Fo,18432
67
+ fmu_manipulation_toolbox-1.9.2b3.dist-info/licenses/LICENSE.txt,sha256=0Q8zhEwTu1K-MDmg8Khay5j56BIz2VLI6RcijIFbU_g,1255
68
+ fmu_manipulation_toolbox-1.9.2b3.dist-info/METADATA,sha256=Z0MV66dhTl6JHi4Xv6UdM8NuJ2csCCiNGnMv_dUlciU,1899
69
+ fmu_manipulation_toolbox-1.9.2b3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
70
+ fmu_manipulation_toolbox-1.9.2b3.dist-info/entry_points.txt,sha256=VOWf1jbG1O-2JrqXOvSoHRRfdH3RNONvz-2RIPHNX0s,338
71
+ fmu_manipulation_toolbox-1.9.2b3.dist-info/top_level.txt,sha256=9D_h-5BMjSqf9z-XFkbJL_bMppR2XNYW3WNuPkXou0k,25
72
+ fmu_manipulation_toolbox-1.9.2b3.dist-info/RECORD,,
@@ -1,7 +1,8 @@
1
1
  [console_scripts]
2
+ datalog2pcap = fmu_manipulation_toolbox.cli.datalog2pcap:datalog2pcap
2
3
  fmucontainer = fmu_manipulation_toolbox.cli.fmucontainer:fmucontainer
3
4
  fmusplit = fmu_manipulation_toolbox.cli.fmusplit:fmusplit
4
5
  fmutool = fmu_manipulation_toolbox.cli.fmutool:fmutool
5
6
 
6
7
  [gui_scripts]
7
- fmutool-gui = fmu_manipulation_toolbox.gui:main
8
+ fmutool-gui = fmu_manipulation_toolbox.gui.gui:main
@@ -1,4 +1,4 @@
1
- Copyright (c) 2024 Renault SAS - Nicolas.LAURENT@Renault.com
1
+ Copyright (c) 2024 Renault SAS
2
2
 
3
3
  Redistribution and use in source and binary forms, with or without
4
4
  modification, are permitted provided that the following conditions