armodel 1.5.0__py3-none-any.whl → 1.6.1__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 (96) hide show
  1. armodel/cli/arxml_dump_cli.py +13 -13
  2. armodel/cli/memory_section_cli.py +76 -0
  3. armodel/cli/system_signal_cli.py +74 -0
  4. armodel/data_models/sw_connector.py +3 -3
  5. armodel/lib/__init__.py +2 -1
  6. armodel/lib/system_signal.py +37 -0
  7. armodel/models/__init__.py +9 -4
  8. armodel/models/annotation.py +27 -3
  9. armodel/models/ar_object.py +18 -6
  10. armodel/models/ar_package.py +271 -127
  11. armodel/models/ar_ref.py +11 -166
  12. armodel/models/bsw_module_template.py +37 -14
  13. armodel/models/common_structure.py +91 -174
  14. armodel/models/communication.py +2 -2
  15. armodel/models/data_prototype.py +41 -6
  16. armodel/models/datatype.py +16 -74
  17. armodel/models/end_to_end_protection.py +1 -1
  18. armodel/models/fibex/can_communication.py +119 -3
  19. armodel/models/fibex/fibex_4_can/__init__.py +0 -0
  20. armodel/models/fibex/fibex_4_lin/__init__.py +0 -0
  21. armodel/models/fibex/fibex_4_multiplatform.py +81 -88
  22. armodel/models/fibex/fibex_core/__init__.py +0 -0
  23. armodel/models/fibex/fibex_core/core_communication.py +627 -0
  24. armodel/models/fibex/fibex_core/core_topology.py +180 -0
  25. armodel/models/fibex/lin_communication.py +24 -3
  26. armodel/models/general_structure.py +110 -11
  27. armodel/models/internal_behavior.py +1 -1
  28. armodel/models/m2/__init__.py +0 -0
  29. armodel/models/m2/autosar_templates/__init__.py +0 -0
  30. armodel/models/m2/autosar_templates/common_structure/__init__.py +188 -0
  31. armodel/models/m2/autosar_templates/common_structure/constants.py +0 -0
  32. armodel/models/m2/autosar_templates/common_structure/implementation.py +21 -0
  33. armodel/models/m2/autosar_templates/common_structure/implementation_data_types.py +148 -0
  34. armodel/models/m2/autosar_templates/ecuc_description_template.py +269 -0
  35. armodel/models/m2/autosar_templates/generic_structure/__init__.py +0 -0
  36. armodel/models/m2/autosar_templates/generic_structure/abstract_structure.py +69 -0
  37. armodel/models/m2/autosar_templates/sw_component_template/__init__.py +0 -0
  38. armodel/models/m2/autosar_templates/sw_component_template/communication.py +360 -0
  39. armodel/models/m2/autosar_templates/sw_component_template/components/__init__.py +246 -0
  40. armodel/models/m2/autosar_templates/sw_component_template/components/instance_refs.py +181 -0
  41. armodel/models/m2/autosar_templates/sw_component_template/composition/__init__.py +154 -0
  42. armodel/models/m2/autosar_templates/sw_component_template/composition/instance_refs.py +157 -0
  43. armodel/models/m2/autosar_templates/sw_component_template/data_type/__init__.py +0 -0
  44. armodel/models/m2/autosar_templates/sw_component_template/data_type/data_prototypes.py +104 -0
  45. armodel/models/m2/autosar_templates/sw_component_template/port_interface/__init__.py +243 -0
  46. armodel/models/m2/autosar_templates/sw_component_template/port_interface/instance_refs.py +39 -0
  47. armodel/models/m2/autosar_templates/sw_component_template/port_interface.py +236 -0
  48. armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/__init__.py +203 -0
  49. armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/access_count.py +13 -0
  50. armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/data_elements.py +46 -0
  51. armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/instance_refs_usage.py +169 -0
  52. armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/mode_declaration_group.py +38 -0
  53. armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/server_call.py +27 -0
  54. armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/trigger.py +10 -0
  55. armodel/models/m2/autosar_templates/system_template/__init__.py +321 -0
  56. armodel/models/m2/autosar_templates/system_template/data_mapping.py +88 -0
  57. armodel/models/m2/autosar_templates/system_template/instance_refs.py +48 -0
  58. armodel/models/m2/autosar_templates/system_template/network_management.py +554 -0
  59. armodel/models/m2/autosar_templates/system_template/transport_protocols.py +7 -0
  60. armodel/models/m2/msr/__init__.py +0 -0
  61. armodel/models/m2/msr/asam_hdo/__init__.py +0 -0
  62. armodel/models/m2/msr/asam_hdo/units.py +105 -0
  63. armodel/models/m2/msr/data_dictionary/__init__.py +0 -0
  64. armodel/models/m2/msr/data_dictionary/auxillary_objects.py +42 -0
  65. armodel/models/m2/msr/data_dictionary/data_def_properties.py +295 -0
  66. armodel/models/m2/msr/documentation/__init__.py +0 -0
  67. armodel/models/m2/msr/documentation/block_elements.py +18 -0
  68. armodel/models/m2_msr.py +1 -0
  69. armodel/models/multilanguage_data.py +15 -0
  70. armodel/models/per_instance_memory.py +34 -6
  71. armodel/models/port_prototype.py +2 -253
  72. armodel/models/service_needs.py +3 -1
  73. armodel/models/sw_component.py +19 -358
  74. armodel/parser/__init__.py +2 -1
  75. armodel/parser/abstract_arxml_parser.py +10 -1
  76. armodel/parser/arxml_parser.py +912 -229
  77. armodel/parser/file_parser.py +43 -0
  78. armodel/tests/test_armodel/models/test_ar_package.py +6 -3
  79. armodel/tests/test_armodel/models/test_ar_ref.py +18 -16
  80. armodel/tests/test_armodel/models/test_bsw_module_template.py +5 -5
  81. armodel/tests/test_armodel/models/test_common_structure.py +8 -7
  82. armodel/tests/test_armodel/models/test_data_dictionary.py +5 -5
  83. armodel/tests/test_armodel/models/test_data_prototype.py +2 -2
  84. armodel/tests/test_armodel/models/test_datatype.py +9 -9
  85. armodel/tests/test_armodel/models/test_port_interface.py +2 -2
  86. armodel/tests/test_armodel/parser/test_parse_bswmd.py +3 -3
  87. armodel/tests/test_armodel/parser/test_sw_components.py +3 -3
  88. armodel/writer/abstract_arxml_writer.py +5 -1
  89. armodel/writer/arxml_writer.py +870 -224
  90. {armodel-1.5.0.dist-info → armodel-1.6.1.dist-info}/METADATA +28 -1
  91. armodel-1.6.1.dist-info/RECORD +140 -0
  92. {armodel-1.5.0.dist-info → armodel-1.6.1.dist-info}/entry_points.txt +3 -1
  93. armodel-1.5.0.dist-info/RECORD +0 -91
  94. {armodel-1.5.0.dist-info → armodel-1.6.1.dist-info}/LICENSE +0 -0
  95. {armodel-1.5.0.dist-info → armodel-1.6.1.dist-info}/WHEEL +0 -0
  96. {armodel-1.5.0.dist-info → armodel-1.6.1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: armodel
3
- Version: 1.5.0
3
+ Version: 1.6.1
4
4
  Summary: the python arxml parser
5
5
  Home-page: http://github.com/melodypapa/py-armodel
6
6
  Author: melodypapa
@@ -327,3 +327,30 @@ Fix the attribute intervalType of **Limit** is empty issue.
327
327
  * GATEWAY
328
328
  * I-SIGNAL
329
329
 
330
+ **Version 1.6.0**
331
+
332
+ 1. Add the annotation support for the Identifiable class. (Issue #29)
333
+ 2. Ecuc (Issue #29)
334
+ * EcucValueCollection
335
+ * EcucModuleConfigurationValues
336
+ * EcucContainerValue
337
+ * EcucParameterValue
338
+ * EcucAbstractReferenceValue
339
+ 3. To support the following AR Element:
340
+ * I-SIGNAL-GROUP
341
+ * I-SIGNAL-I-PDU-GROUP
342
+ * NM-CONFIG
343
+ * NM-NODE
344
+ * NM-CLUSTER
345
+ * CAN-NM-MODE
346
+ * NM-ECU
347
+ * LIN-TP-CONFIG
348
+ * SECURED-I-PDU
349
+ * MODE-SWITCH-POINTS
350
+ 4. Create the CLI (armodel-system-signal) to list all the system signals
351
+
352
+ **Version 1.6.1**
353
+
354
+ 1. Organize the armodel package.
355
+ 2. Add the Get/Set method for several class.
356
+
@@ -0,0 +1,140 @@
1
+ armodel/__init__.py,sha256=GVXg600GzbcLT2-Lrepuz6mjT6_BsVNmi2eDiz85NiA,67
2
+ armodel/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ armodel/cli/arxml_dump_cli.py,sha256=eIn1PD5H8AlaF_hEJshUhtw0weM44rVa-mMwNFUrqZY,9961
4
+ armodel/cli/arxml_format_cli.py,sha256=9Ys_3DlcVwV2vDGcE6FAwmVfyx2dKLlIdLi17Fla-Jk,2066
5
+ armodel/cli/connector2xlsx_cli.py,sha256=bPxJ53znVpluabEbjqN58RX8a9dvlf-cF5o7ncjqTyw,2125
6
+ armodel/cli/connector_update_cli.py,sha256=j8T2N-gxHM6CD5Vb44X24HyuhvXwNDIniUkdJ7Dsluc,2286
7
+ armodel/cli/memory_section_cli.py,sha256=ky-EJyl74-F8DpIu6uafEFilfblOvEa4HqQyM5HhqyI,2139
8
+ armodel/cli/swc_list_cli.py,sha256=NUyOuIYhXsbSzQl1CjWdgdP83CkeAkXS_kWY4zs-XKU,2414
9
+ armodel/cli/system_signal_cli.py,sha256=4u474E1yd1CGBPiALL-ZXpDatXpUrD6qyXsR-au2yp0,2101
10
+ armodel/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ armodel/data_models/sw_connector.py,sha256=ZU1B3AI84vpSSSpQaGR6CMc3qZGnhbK1Z-SQGvwYA9o,584
12
+ armodel/lib/__init__.py,sha256=5629DkORqTomt16J6VL40o5hFv86-9SRB1240OJWTts,142
13
+ armodel/lib/cli_args_parser.py,sha256=WiTC3wy_fZYloA1AjPqCvvOA_26V_y5toun0qfV51cw,1207
14
+ armodel/lib/data_analyzer.py,sha256=y4ViEGPi_xRKD7hw1ptkGl0_UfhnNdgNzf2YjbOhpjM,1159
15
+ armodel/lib/sw_component.py,sha256=y4ViEGPi_xRKD7hw1ptkGl0_UfhnNdgNzf2YjbOhpjM,1159
16
+ armodel/lib/system_signal.py,sha256=uzII_GM_-kwzvFeDOGD2HrC_gunsmhJPD1xwbVofa7c,1241
17
+ armodel/models/__init__.py,sha256=tdwxgqP9MRC-dnKnf4zIpgv7FrdZrJ3QgkCeOOOBA6E,988
18
+ armodel/models/annotation.py,sha256=54XqgKgIzPGRfv3gVCIACKqYt1hUUG6eQDlB06A7xqs,1354
19
+ armodel/models/ar_object.py,sha256=FqCUl0UcQaE7i8VvkmQPmsLsUGFNLPEDMn2aH3CyuNM,5783
20
+ armodel/models/ar_package.py,sha256=EKHzIrsy1q2w6Uso_4-5cQ2xTMMDTSUQ6Q4hp4PieYQ,32070
21
+ armodel/models/ar_ref.py,sha256=fTt32OxTy-edQqw_WTPnp1y6UAiPhAtxr4BV07rkSzw,488
22
+ armodel/models/bsw_module_template.py,sha256=5qyqhKyyzMrTzwarCWRM8nqjp55MNqBtxFstD7VMzTY,16292
23
+ armodel/models/calibration.py,sha256=aSIVenVmlYKW5kQmaLTiy7kJcSe6yrvCfN8kO03Wk6Q,4087
24
+ armodel/models/common_structure.py,sha256=22SCULP1BFZ5G6ik9_sWgk_VpEUzz3bLq8RJX3l1k9o,9324
25
+ armodel/models/communication.py,sha256=CafA0LKVpSpjMQ0UUdC3IcZf6ttBw6yCvqyqxTLWTXo,693
26
+ armodel/models/data_def_properties.py,sha256=Mhmucm3k_f12IV5BqH3KlJ5SdmIrlmqnmrQPb5gqamA,470
27
+ armodel/models/data_dictionary.py,sha256=1gbRyvWp5QD0Z-2kxNrqa1qrab5kEZTMcNdWscdmth0,2513
28
+ armodel/models/data_prototype.py,sha256=Sq0nizgUKzc6kG3PKVfIE4e_l4UMsDi2m34tm7TVph4,3622
29
+ armodel/models/datatype.py,sha256=d6yxMhNWbbTtu7tWGDxntWl2nCdiZM636CPxJV328Z8,6259
30
+ armodel/models/ecuc_parameter_def_template.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ armodel/models/end_to_end_protection.py,sha256=Qvcqy5_eoSD8nFJd2mEee-wLtv7VvyGoPqUHkR2JMfM,3022
32
+ armodel/models/general_structure.py,sha256=NlWnbpSQ1DJwubYkkVs5oxYxJGSRFqLVqtb_yu_WJDI,8893
33
+ armodel/models/global_constraints.py,sha256=fBCzYaZ55SDG7shneE8dNgFm_QQxPRUUPvzIWBlNKHY,1301
34
+ armodel/models/implementation.py,sha256=bZB1GVU-5VCsx0xATj-0XNlvMuq-pVQ2zAVN-BEy2UU,5631
35
+ armodel/models/internal_behavior.py,sha256=VwrA1iqsYlHK3N_tKtn85ErUKaGq2GHtys0TlVPiWds,2498
36
+ armodel/models/m2_msr.py,sha256=6xEq67DohruwiQFYLSVxo9kW6qPweyDWUOyy6-4pAaQ,5128
37
+ armodel/models/mode_declaration.py,sha256=YuZjSv3Iu6bdchdZLCp-iNYsSBC0dcF_mJ65ScfjGSs,240
38
+ armodel/models/multilanguage_data.py,sha256=fCJAveAXMJQp5-Ndwqz6ti2-RVtMoZuWZJ6A55eWBQQ,1288
39
+ armodel/models/per_instance_memory.py,sha256=KBqRZyi-FtQx25w5mlUjJbI00ZlZdPPgIeDlaIMUTgY,1188
40
+ armodel/models/port_interface.py,sha256=h1quoa4LRhEC7aGKIUs8bbHeGTQ5vbDkC7AwUUD6U1E,7257
41
+ armodel/models/port_prototype.py,sha256=ZFjdo7Qlo9rFEO4ihyqoDfv_ttJ1IZMK7au5gxArXTc,413
42
+ armodel/models/record_layout.py,sha256=6ZRzRZr89EUanrYaSGjj_UhlVHewneI3NLglqjL_KzU,4554
43
+ armodel/models/rpt_scenario.py,sha256=WJ47kJE5BfQYKI8hHbL5TGg4mNX0xmjpToXCIwC-pNo,565
44
+ armodel/models/service_mapping.py,sha256=cDmXPaWVnCJ0M9Bkdk_KZvkyCfMQS35ADuFPPACzm70,279
45
+ armodel/models/service_needs.py,sha256=cB8X7gXsuVKREf6sMFKPW95tctSiFZwaM8j6jd6III8,2653
46
+ armodel/models/sw_component.py,sha256=fyWy11QXok7tb9Ng5zjJxzijhU1JqNxhWG-JOW5YY-Q,17105
47
+ armodel/models/timing.py,sha256=7XQQli9Dxd6A5-F6NFcGOnEJ-W2y0kYBE3X0bbNdf1A,3289
48
+ armodel/models/unit.py,sha256=uTAHK2LzmQimlQKcWFFrFJJhYAcAlOcsMtvLEQ42EE8,397
49
+ armodel/models/fibex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ armodel/models/fibex/can_communication.py,sha256=r9y0BulnUhpshj7j-lCVKBUveqyXNd2Eq7SUdAdagd8,3575
51
+ armodel/models/fibex/fibex_4_multiplatform.py,sha256=rGWzQzfA1rfHTstY2zrSqO95VYQKpLqUZHarZ2etm0U,4054
52
+ armodel/models/fibex/fibex_core.py,sha256=YtxeMAWOo6ppV5-8UCoQEjyWMrXWdkfF4uojVAnC53w,10684
53
+ armodel/models/fibex/lin_communication.py,sha256=RP80TMzD9zALrnKhTbvtVGoOlbbv_vLVlKVRf1qAM18,1191
54
+ armodel/models/fibex/lin_topology.py,sha256=um4viim757JIPCTaD34g7XRpIolkGLsl3XF4gJSePF0,229
55
+ armodel/models/fibex/fibex_4_can/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
+ armodel/models/fibex/fibex_4_lin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
+ armodel/models/fibex/fibex_core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
+ armodel/models/fibex/fibex_core/core_communication.py,sha256=Wyoag9k-uLNRSagGX2BmVlPl-ywC04wPVVB3rOzGLhY,19662
59
+ armodel/models/fibex/fibex_core/core_topology.py,sha256=ZaRivNXDOvdXlW4Z1EIYhzh_BGk87UOHgmc8ZjYegNk,7044
60
+ armodel/models/m2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
+ armodel/models/m2/autosar_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ armodel/models/m2/autosar_templates/ecuc_description_template.py,sha256=i3iKNzibMX4BeL95nUbBTLIH8LSHv7TQ3sGsUqQcbhw,9078
63
+ armodel/models/m2/autosar_templates/common_structure/__init__.py,sha256=OHaKJ0UGd_Ni9F11LHMpc8ILTNgxKuJ9QQnuQDSZ_lw,5804
64
+ armodel/models/m2/autosar_templates/common_structure/constants.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ armodel/models/m2/autosar_templates/common_structure/implementation.py,sha256=KbgskqCO1970U4kUGvfnhThf9eh2ruO8Uz_NsU-Sh7I,646
66
+ armodel/models/m2/autosar_templates/common_structure/implementation_data_types.py,sha256=czXitc6bHGvybkGm0yiSKYXj6lTzu2aecVaR7zXeJfA,5503
67
+ armodel/models/m2/autosar_templates/generic_structure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ armodel/models/m2/autosar_templates/generic_structure/abstract_structure.py,sha256=Sad_Bt9d1um5zC8T6cRyNhzIDCGDjd48dSO01cH--hg,1948
69
+ armodel/models/m2/autosar_templates/sw_component_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
+ armodel/models/m2/autosar_templates/sw_component_template/communication.py,sha256=_Y51VV0nquCBBVA21uzw7zcresFow6857JcvTyfEHJM,11205
71
+ armodel/models/m2/autosar_templates/sw_component_template/port_interface.py,sha256=XRBp3ZuBbFGFs3BWpF5VsjhuGoDgs1sEuJ7IRI6WET4,9249
72
+ armodel/models/m2/autosar_templates/sw_component_template/components/__init__.py,sha256=dx6AExOZvsVw6--aueCxNsqZ57PdHaXdPEJCjGeV0_E,9945
73
+ armodel/models/m2/autosar_templates/sw_component_template/components/instance_refs.py,sha256=0eLTmX08Qda7AT3mePELoo-o2IaVRTs_P6p9alJTIAo,5712
74
+ armodel/models/m2/autosar_templates/sw_component_template/composition/__init__.py,sha256=aOE1VA4UfLfA-3xZnDKogBAdQQ4u5SNAq4bybViUY4g,5968
75
+ armodel/models/m2/autosar_templates/sw_component_template/composition/instance_refs.py,sha256=_djnWMHLGYw2C5bjAgopoqwG3r2IG-d9kMZk4cbXtyY,4889
76
+ armodel/models/m2/autosar_templates/sw_component_template/data_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ armodel/models/m2/autosar_templates/sw_component_template/data_type/data_prototypes.py,sha256=tGi_fL8zU1Ewe7rssiKSb_EetkPaGKMVdk0eTBAC-yg,3621
78
+ armodel/models/m2/autosar_templates/sw_component_template/port_interface/__init__.py,sha256=h-EB1vrZrHi0XQuuV0S6AAtXg-Pz7Gjl-2MQqFPvHiE,9955
79
+ armodel/models/m2/autosar_templates/sw_component_template/port_interface/instance_refs.py,sha256=P-2ST0LTTXk6Fghh2mATPE5-h2pF55YcKW_2eQUQIvA,1332
80
+ armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/__init__.py,sha256=I4BP4XjWbOwafMXWpTUZ4iQ2Liu_HQaDKyLzQ86KqUs,9452
81
+ armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/access_count.py,sha256=o6BLmmYiqc5U5mb7YtzS74U1FIhDDPt1XgJBiib5VkA,460
82
+ armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/data_elements.py,sha256=hHuSHdS2dCpy9XpSq-2WCvj8fbOtBiU4xwHdb8mR5GU,1612
83
+ armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/instance_refs_usage.py,sha256=Btx00UnxqF_2Cfih9KwZc39403OemMSaqVFqNtNUtSI,5598
84
+ armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/mode_declaration_group.py,sha256=_u9bQ4tuZ5_dW29dNIVYmEkFWFwfCBycjH_4sgmaLFM,1210
85
+ armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/server_call.py,sha256=0sFJoX_Mu_S3AZ7EFMyuVEUmo4Md5O0SSf_eJO0Y1BE,814
86
+ armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/trigger.py,sha256=Cwklr56BunDgNEhlge6k2cbudTM2rEt0ka82VSL3a-4,286
87
+ armodel/models/m2/autosar_templates/system_template/__init__.py,sha256=gHp7PG7rcf4g6B0QtQwDooP6K7IrD3ZkP4YEYkPe6l0,10443
88
+ armodel/models/m2/autosar_templates/system_template/data_mapping.py,sha256=wwyRA840YUcfKkeZREqlh2pqOC6unSqPnS7bI0HM9eg,2479
89
+ armodel/models/m2/autosar_templates/system_template/instance_refs.py,sha256=wSrg0gBCZwjBp0mC8b6YmEEnXWBFRrEj0JITzO39gPs,1603
90
+ armodel/models/m2/autosar_templates/system_template/network_management.py,sha256=bIllBikQdg9pDI43Dq6U3Pmn4W7grHlOUhVamnLWYYg,17061
91
+ armodel/models/m2/autosar_templates/system_template/transport_protocols.py,sha256=yHipIJ6z5BBSI8YRCwk0x4ub84PkhGIRxfqFznvqRk8,244
92
+ armodel/models/m2/msr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
+ armodel/models/m2/msr/asam_hdo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
+ armodel/models/m2/msr/asam_hdo/units.py,sha256=PG_49hSpMasQuZS7qYo2gLrmd57W8Gde0c4mRFWs5GE,3167
95
+ armodel/models/m2/msr/data_dictionary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
+ armodel/models/m2/msr/data_dictionary/auxillary_objects.py,sha256=Ta9JE4vg8XJGw82vY41422amXglxYYetGSxo6MLNDuM,1325
97
+ armodel/models/m2/msr/data_dictionary/data_def_properties.py,sha256=YedVW9kpax9HFtm5Ly5JlaBv40RiqL3llzhpv9AcgGo,8965
98
+ armodel/models/m2/msr/documentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
+ armodel/models/m2/msr/documentation/block_elements.py,sha256=NjarQwu756rTDHVHCHADtXWF61RM9nLcfLBGLwg4fyA,487
100
+ armodel/models/system_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
+ armodel/models/system_template/network_management.py,sha256=ztMxX4zDFBFEiXmR3zne23Lc_rNuaXQbCJS4eL61VZ0,218
102
+ armodel/models/system_template/transport_protocols.py,sha256=en2Pl3eThqDY5DJ7d8sT0vxLwUQsu88Mn7l2VzcHDZg,221
103
+ armodel/parser/__init__.py,sha256=wFcqh5unmDvKvf4R8vWkeertAXwWxAuOOEsbsM4mOHs,78
104
+ armodel/parser/abstract_arxml_parser.py,sha256=9OT6j4W3gRCgwgplQf3d87w7kiJVMYW0ZD71VQpvI_k,10823
105
+ armodel/parser/arxml_parser.py,sha256=Ag8PJnftG0_ME4RGHhjyezZPzZZtyIxT-xjAYRQ08WM,175357
106
+ armodel/parser/connector_xlsx_parser.py,sha256=5KDaHykqL0NszftFG0V5CgmgiRi4Bsg7wJnlRg2pc2k,10087
107
+ armodel/parser/excel_parser.py,sha256=-Ws0eDvGna9LPQC9T8bgMg3Zq84v04aSuSxZUlZx1Wo,698
108
+ armodel/parser/file_parser.py,sha256=SEPj3YsYdsz8iBvxdeDIs63NC-NQLftoIm4yPoHheEc,1410
109
+ armodel/report/__init__.py,sha256=EId0Ph3qYyzkKHKplJrs00ToxHeSjQVvhLwrSoV-SBw,52
110
+ armodel/report/connector_xls_report.py,sha256=7GsvFWo_lfZRKCLAV-a17kC8-3KKSMAR1wGOnp9Cqlo,3876
111
+ armodel/report/excel_report.py,sha256=Iome8wALpOFZyZkMCG5DPSAFkfv4pU0y_BZXHVSdonc,1412
112
+ armodel/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
+ armodel/tests/test_armodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
+ armodel/tests/test_armodel/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ armodel/tests/test_armodel/models/test_ar_object.py,sha256=YLuEYmxk4KqmYGef6ru20i838raHgHrwVgnZQwi5_OU,4941
116
+ armodel/tests/test_armodel/models/test_ar_package.py,sha256=amawnatYtITWZAgIvY9WIwvT0to_iFz11Rw77VG0QnU,14808
117
+ armodel/tests/test_armodel/models/test_ar_ref.py,sha256=h5XVmdZeVv3aqCaefai9MKI9PwE7YNt-FKGnmZJmc58,3519
118
+ armodel/tests/test_armodel/models/test_bsw_module_template.py,sha256=nUMH7t6dJOXdATt8dfEnLotRUhSUQAYpUCianE0F_ao,2071
119
+ armodel/tests/test_armodel/models/test_common_structure.py,sha256=ZPUA8txjwI16Jwxi9rH_5kcR3qQc4hLjdH7ql2iW7s8,3552
120
+ armodel/tests/test_armodel/models/test_data_dictionary.py,sha256=Z_nn9JK7cJOPjst0ih4qj0212LIsHiJ-YUTfJOPEOvw,1106
121
+ armodel/tests/test_armodel/models/test_data_prototype.py,sha256=ev8jFNFVFjkckkZP_dzj4oM49W-8CJJoucQB-0xActk,4259
122
+ armodel/tests/test_armodel/models/test_datatype.py,sha256=hcuCcqmyi5p8-pHho4KnrAKIWiA00dlf-cHhodgPUJI,12035
123
+ armodel/tests/test_armodel/models/test_general_structure.py,sha256=E8kiGQY_2Lj9lUhLNTHzBgu-xnGl8gO3faNueJFeHJE,2220
124
+ armodel/tests/test_armodel/models/test_implementation.py,sha256=RBIuwvVjiSfAmqytZpT53SJd1AJzwHuH0KdAACoZ2Ik,912
125
+ armodel/tests/test_armodel/models/test_m2_msr.py,sha256=pMWQS4O7FUMrbZcaCR0WF7lYj2m3jvq3AoR4ZbS7Ntg,2650
126
+ armodel/tests/test_armodel/models/test_port_interface.py,sha256=6yD1dOERLv9lnlRUv4JnqJiTWaKnekcYFy2iktOuc4I,9201
127
+ armodel/tests/test_armodel/models/test_port_prototype.py,sha256=wV_QjAg4fb9MfeiwDWldzJiHeNpAcZq5vPZ4rWB2Pn0,494
128
+ armodel/tests/test_armodel/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
+ armodel/tests/test_armodel/parser/test_arxml_parser.py,sha256=4-4DKdHIZN50wiM0tzzP-nejY74aEtAWhURwYxDGrWw,747
130
+ armodel/tests/test_armodel/parser/test_parse_bswmd.py,sha256=z7ROVjFFDjk7eIKUwRc1HHUZFIqvSPoTyFAy1IABdC0,10182
131
+ armodel/tests/test_armodel/parser/test_sw_components.py,sha256=OMJ7HEel8TmUEo50Hn3gEc8jdSV0StUOs_ThMENJXGM,4150
132
+ armodel/writer/__init__.py,sha256=eXr3qhGzFIvHNBin22x-Tk2JM6QwRgx1jwrluDKAlzQ,37
133
+ armodel/writer/abstract_arxml_writer.py,sha256=QoBAlVwt8D7Mpsd5t3Cg0foi-vyLlfaeSOqykn3O9u4,5235
134
+ armodel/writer/arxml_writer.py,sha256=qJ_QgY-cy5y3X0oz1iBwpTPHvJdWz0c1AnYHfDkhxXU,170548
135
+ armodel-1.6.1.dist-info/LICENSE,sha256=rceTpGhsmmN1M0k1KO0HRS11iCjen-2y56ZEqgo43wo,1088
136
+ armodel-1.6.1.dist-info/METADATA,sha256=NrMjj0hjnot7yF6rs0h3rAmCvdgaxtY3BoXvR0EkPIU,10573
137
+ armodel-1.6.1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
138
+ armodel-1.6.1.dist-info/entry_points.txt,sha256=7n_GwPbHcnqMTnKCnPjjjo3s_uo_vaFrjtZQeDQtHHM,397
139
+ armodel-1.6.1.dist-info/top_level.txt,sha256=AEATYsqAuRpr0XGa_ThW7-o4WLlA5e3PEgD0QJhzmoA,8
140
+ armodel-1.6.1.dist-info/RECORD,,
@@ -1,7 +1,9 @@
1
1
  [console_scripts]
2
+ armodel-component = armodel.cli.swc_list_cli:main
3
+ armodel-memory-section = armodel.cli.memory_section_cli:main
4
+ armodel-system-signal = armodel.cli.system_signal_cli:main
2
5
  arxml-dump = armodel.cli.arxml_dump_cli:cli_main
3
6
  arxml-format = armodel.cli.arxml_format_cli:main
4
- arxml-swc = armodel.cli.swc_list_cli:main
5
7
  connector-update = armodel.cli.connector_update_cli:main
6
8
  connector2xlsx = armodel.cli.connector2xlsx_cli:main
7
9
 
@@ -1,91 +0,0 @@
1
- armodel/__init__.py,sha256=GVXg600GzbcLT2-Lrepuz6mjT6_BsVNmi2eDiz85NiA,67
2
- armodel/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- armodel/cli/arxml_dump_cli.py,sha256=a3yNfeWwmoDHazJfKzKJVuwPeL9oJ2PAn1vCgpVDttY,10019
4
- armodel/cli/arxml_format_cli.py,sha256=9Ys_3DlcVwV2vDGcE6FAwmVfyx2dKLlIdLi17Fla-Jk,2066
5
- armodel/cli/connector2xlsx_cli.py,sha256=bPxJ53znVpluabEbjqN58RX8a9dvlf-cF5o7ncjqTyw,2125
6
- armodel/cli/connector_update_cli.py,sha256=j8T2N-gxHM6CD5Vb44X24HyuhvXwNDIniUkdJ7Dsluc,2286
7
- armodel/cli/swc_list_cli.py,sha256=NUyOuIYhXsbSzQl1CjWdgdP83CkeAkXS_kWY4zs-XKU,2414
8
- armodel/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- armodel/data_models/sw_connector.py,sha256=Eiw848Qs0L3-85cF7uj5IXcudOks2rVU5-CVz-v-cm8,590
10
- armodel/lib/__init__.py,sha256=d6Zc24rVcVb5-TvPEdaJ7vx_7UJ37z9rLjXtpAzVBwU,93
11
- armodel/lib/cli_args_parser.py,sha256=WiTC3wy_fZYloA1AjPqCvvOA_26V_y5toun0qfV51cw,1207
12
- armodel/lib/data_analyzer.py,sha256=y4ViEGPi_xRKD7hw1ptkGl0_UfhnNdgNzf2YjbOhpjM,1159
13
- armodel/lib/sw_component.py,sha256=y4ViEGPi_xRKD7hw1ptkGl0_UfhnNdgNzf2YjbOhpjM,1159
14
- armodel/models/__init__.py,sha256=mBpu5GEPCHes0QtWXiccyFIGfCr3CqqfRo1C3LeRc2E,552
15
- armodel/models/annotation.py,sha256=Pn5Xkl87E0Zs5bBSaSwOfalUT2OOCPJ4Z99Wh_6VIrA,517
16
- armodel/models/ar_object.py,sha256=_h2wLpOdPQRqTdnR__N5WaJ9oWkWdYg13sBxqsegayM,5326
17
- armodel/models/ar_package.py,sha256=3E9dVovu3z9fQNXMC6Yug-wlp3K3pNX_mCCUQRbPQXU,25334
18
- armodel/models/ar_ref.py,sha256=_DvNtGS0TL_y70fva0cF-dtY7jzwtqDv14xENaew1TY,7586
19
- armodel/models/bsw_module_template.py,sha256=1SQSk3lFRElfT404_lzWPVuswuxM8vY54TH3sWDqav4,15625
20
- armodel/models/calibration.py,sha256=aSIVenVmlYKW5kQmaLTiy7kJcSe6yrvCfN8kO03Wk6Q,4087
21
- armodel/models/common_structure.py,sha256=3rQOJ21zqAHrzMQZcR0Eo8yrONk3hPCsecyqncncaG8,13234
22
- armodel/models/communication.py,sha256=j1QUSM7yfUkd3p7vqckmK9Zf9H6Qf9AAVpckhnr8QRo,601
23
- armodel/models/data_def_properties.py,sha256=Mhmucm3k_f12IV5BqH3KlJ5SdmIrlmqnmrQPb5gqamA,470
24
- armodel/models/data_dictionary.py,sha256=1gbRyvWp5QD0Z-2kxNrqa1qrab5kEZTMcNdWscdmth0,2513
25
- armodel/models/data_prototype.py,sha256=dkjIF1qIsul2SsUbHpX8r1VhDeGdg-Vgf5VUJNiwhpE,2777
26
- armodel/models/datatype.py,sha256=0YpkrfhFUDn00p0oT4NqVpvD7hYAWzUWRwqvsqEq6zE,8640
27
- armodel/models/ecuc_parameter_def_template.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
- armodel/models/end_to_end_protection.py,sha256=Sna3HSsukFHTBj72jWXd3fRvJTEESK1wnKo_KXD5itE,2978
29
- armodel/models/general_structure.py,sha256=m3kSJfj6BU8xmDd-k3wxnx-wJH3z3rhu3AQ7TWedtL0,6374
30
- armodel/models/global_constraints.py,sha256=fBCzYaZ55SDG7shneE8dNgFm_QQxPRUUPvzIWBlNKHY,1301
31
- armodel/models/implementation.py,sha256=bZB1GVU-5VCsx0xATj-0XNlvMuq-pVQ2zAVN-BEy2UU,5631
32
- armodel/models/internal_behavior.py,sha256=FS49y0iPiG77uM-JiWYPyXkE7OP27UvOMttyNe8Jf3c,2444
33
- armodel/models/m2_msr.py,sha256=gEaOEDsX_ZeZtcu2as5BAnBR5GjlABDY9K0bsNhG2WU,5061
34
- armodel/models/mode_declaration.py,sha256=YuZjSv3Iu6bdchdZLCp-iNYsSBC0dcF_mJ65ScfjGSs,240
35
- armodel/models/multilanguage_data.py,sha256=f7WVEX_U76sZEMcDi3ariiMq6vtUNUheM4xeDFdlyxo,931
36
- armodel/models/per_instance_memory.py,sha256=286K8xdiKWCVmasrqycth6E5WyQyUvOg8GBUbYYF-yA,498
37
- armodel/models/port_interface.py,sha256=h1quoa4LRhEC7aGKIUs8bbHeGTQ5vbDkC7AwUUD6U1E,7257
38
- armodel/models/port_prototype.py,sha256=NDApoDPogKCFO7pAKi6BfMMj4Q6-d3U10mPQQnS5GhM,9477
39
- armodel/models/record_layout.py,sha256=6ZRzRZr89EUanrYaSGjj_UhlVHewneI3NLglqjL_KzU,4554
40
- armodel/models/rpt_scenario.py,sha256=WJ47kJE5BfQYKI8hHbL5TGg4mNX0xmjpToXCIwC-pNo,565
41
- armodel/models/service_mapping.py,sha256=cDmXPaWVnCJ0M9Bkdk_KZvkyCfMQS35ADuFPPACzm70,279
42
- armodel/models/service_needs.py,sha256=W9dsu2Z9oIPXYJab7sFht3lY7QPe0ozHMQNhrvBX1ec,2553
43
- armodel/models/sw_component.py,sha256=fut6221yzVaWUwfhr28NgFW8LkC5JVBJ5UzekvrZfWQ,33102
44
- armodel/models/timing.py,sha256=7XQQli9Dxd6A5-F6NFcGOnEJ-W2y0kYBE3X0bbNdf1A,3289
45
- armodel/models/unit.py,sha256=uTAHK2LzmQimlQKcWFFrFJJhYAcAlOcsMtvLEQ42EE8,397
46
- armodel/models/fibex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- armodel/models/fibex/can_communication.py,sha256=mhBqcEHD8Sbpw_nLGQ2gf_Z_i0DYOGu-e47XmbByT3I,195
48
- armodel/models/fibex/fibex_4_multiplatform.py,sha256=fp_F-vXgUD5hrhMByyTAOSnDzezaWlUjtt8bsgvX0F4,4172
49
- armodel/models/fibex/fibex_core.py,sha256=YtxeMAWOo6ppV5-8UCoQEjyWMrXWdkfF4uojVAnC53w,10684
50
- armodel/models/fibex/lin_communication.py,sha256=am8gVHuaJ1byXDTJ6z2RspahDFKkM4Qn4eou8Q-4yRo,520
51
- armodel/models/fibex/lin_topology.py,sha256=um4viim757JIPCTaD34g7XRpIolkGLsl3XF4gJSePF0,229
52
- armodel/models/system_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
- armodel/models/system_template/network_management.py,sha256=ztMxX4zDFBFEiXmR3zne23Lc_rNuaXQbCJS4eL61VZ0,218
54
- armodel/models/system_template/transport_protocols.py,sha256=en2Pl3eThqDY5DJ7d8sT0vxLwUQsu88Mn7l2VzcHDZg,221
55
- armodel/parser/__init__.py,sha256=whzCLvAstuSlm6scgcCId7AUxSX8z8PV8AIKSNWMkGo,37
56
- armodel/parser/abstract_arxml_parser.py,sha256=V9MR_Rv2ha-1nn653mazmmkNTovgX0yZRoyXEtBzayQ,10452
57
- armodel/parser/arxml_parser.py,sha256=VWwVBYmR4FPg9Obb8dB9-ysQetfa0aMG5WLI_DPql08,131124
58
- armodel/parser/connector_xlsx_parser.py,sha256=5KDaHykqL0NszftFG0V5CgmgiRi4Bsg7wJnlRg2pc2k,10087
59
- armodel/parser/excel_parser.py,sha256=-Ws0eDvGna9LPQC9T8bgMg3Zq84v04aSuSxZUlZx1Wo,698
60
- armodel/report/__init__.py,sha256=EId0Ph3qYyzkKHKplJrs00ToxHeSjQVvhLwrSoV-SBw,52
61
- armodel/report/connector_xls_report.py,sha256=7GsvFWo_lfZRKCLAV-a17kC8-3KKSMAR1wGOnp9Cqlo,3876
62
- armodel/report/excel_report.py,sha256=Iome8wALpOFZyZkMCG5DPSAFkfv4pU0y_BZXHVSdonc,1412
63
- armodel/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
- armodel/tests/test_armodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
- armodel/tests/test_armodel/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- armodel/tests/test_armodel/models/test_ar_object.py,sha256=YLuEYmxk4KqmYGef6ru20i838raHgHrwVgnZQwi5_OU,4941
67
- armodel/tests/test_armodel/models/test_ar_package.py,sha256=4y_XY788rjzUEa-gX_y_FZ3uHriOMttpj-kJPWTe-nc,14523
68
- armodel/tests/test_armodel/models/test_ar_ref.py,sha256=2zayiW9gKnNJc3c8no3fPQ3B5m5GvQ5FHFSxXU-yUXo,3260
69
- armodel/tests/test_armodel/models/test_bsw_module_template.py,sha256=ZmJ9_8omFtbf9_O_OHa0B1v2bP6cdhCzW4oJkuicZYY,2061
70
- armodel/tests/test_armodel/models/test_common_structure.py,sha256=tbzrrN6PmEAZ59GSwD29K18q0vlg8jIT8ipm7-6ImyQ,3446
71
- armodel/tests/test_armodel/models/test_data_dictionary.py,sha256=0TCjN3zM1aPLbL4D6fpwoI5Q-hJR8uJZNSjEhiwCegg,1070
72
- armodel/tests/test_armodel/models/test_data_prototype.py,sha256=-VTR2TKfq3vvbn17Qg7e5s46xwXGsjh7wH7bI1mypds,4206
73
- armodel/tests/test_armodel/models/test_datatype.py,sha256=aX5YF6E9QPxYpsJtu31T0GSbKYyC98TUxJLDAyR2aqA,11818
74
- armodel/tests/test_armodel/models/test_general_structure.py,sha256=E8kiGQY_2Lj9lUhLNTHzBgu-xnGl8gO3faNueJFeHJE,2220
75
- armodel/tests/test_armodel/models/test_implementation.py,sha256=RBIuwvVjiSfAmqytZpT53SJd1AJzwHuH0KdAACoZ2Ik,912
76
- armodel/tests/test_armodel/models/test_m2_msr.py,sha256=pMWQS4O7FUMrbZcaCR0WF7lYj2m3jvq3AoR4ZbS7Ntg,2650
77
- armodel/tests/test_armodel/models/test_port_interface.py,sha256=QCu_EwfczGgMRRjdLfU54i8kpyIsU5JYGJ0WayQ4lQQ,9104
78
- armodel/tests/test_armodel/models/test_port_prototype.py,sha256=wV_QjAg4fb9MfeiwDWldzJiHeNpAcZq5vPZ4rWB2Pn0,494
79
- armodel/tests/test_armodel/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
- armodel/tests/test_armodel/parser/test_arxml_parser.py,sha256=4-4DKdHIZN50wiM0tzzP-nejY74aEtAWhURwYxDGrWw,747
81
- armodel/tests/test_armodel/parser/test_parse_bswmd.py,sha256=pXRy3WBfbOacJa8mB46SRRUcbzUcIDZASUmm5mrU4bw,10188
82
- armodel/tests/test_armodel/parser/test_sw_components.py,sha256=-hfxJ1wVj0jIP7q8SloNwX4-6xRN5LAV020I-Y5Lybw,4100
83
- armodel/writer/__init__.py,sha256=eXr3qhGzFIvHNBin22x-Tk2JM6QwRgx1jwrluDKAlzQ,37
84
- armodel/writer/abstract_arxml_writer.py,sha256=WUE8dIvoMagb9P-2JpdbY5aRg0Ub10N9ncvD8E03AFA,5078
85
- armodel/writer/arxml_writer.py,sha256=2m6pu34WN7ttzYB64wua9fbJdhW0_PFaqeQP5srfGu8,127136
86
- armodel-1.5.0.dist-info/LICENSE,sha256=rceTpGhsmmN1M0k1KO0HRS11iCjen-2y56ZEqgo43wo,1088
87
- armodel-1.5.0.dist-info/METADATA,sha256=JcFF6XB5F-IwByqugOHesNsRUf8DiX3LEMxwmTmAeno,9903
88
- armodel-1.5.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
89
- armodel-1.5.0.dist-info/entry_points.txt,sha256=mK_qNI3DgZJmNdezwKHoDcv470z3IdJpNpaiWV8ZNjA,269
90
- armodel-1.5.0.dist-info/top_level.txt,sha256=AEATYsqAuRpr0XGa_ThW7-o4WLlA5e3PEgD0QJhzmoA,8
91
- armodel-1.5.0.dist-info/RECORD,,