ansys-edb-core 0.3.0.dev9__tar.gz → 0.4.0.dev0__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.
Files changed (243) hide show
  1. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/LICENSE +21 -21
  2. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/PKG-INFO +25 -45
  3. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/README.rst +83 -83
  4. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/pyproject.toml +80 -81
  5. ansys_edb_core-0.4.0.dev0/src/ansys/edb/core/__init__.py +8 -0
  6. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/database.py +405 -405
  7. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/__init__.py +1 -1
  8. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/bondwire_def.py +335 -335
  9. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/component_def.py +221 -221
  10. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/component_model.py +186 -186
  11. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/component_pin.py +80 -80
  12. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/component_property.py +86 -86
  13. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/dataset_def.py +100 -100
  14. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/debye_model.py +133 -133
  15. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/die_property.py +86 -86
  16. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/dielectric_material_model.py +31 -31
  17. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/djordjecvic_sarkar_model.py +83 -83
  18. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/ic_component_property.py +72 -72
  19. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/io_component_property.py +62 -62
  20. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/material_def.py +387 -387
  21. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/material_property_thermal_modifier.py +103 -103
  22. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/multipole_debye_model.py +62 -62
  23. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/package_def.py +246 -246
  24. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/padstack_def.py +105 -105
  25. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/padstack_def_data.py +454 -454
  26. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/port_property.py +83 -83
  27. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/rlc_component_property.py +35 -35
  28. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/solder_ball_property.py +136 -136
  29. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/technology_def.py +128 -128
  30. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/edb_defs.py +41 -41
  31. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/__init__.py +1 -1
  32. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/arc_data.py +309 -309
  33. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/point3d_data.py +171 -171
  34. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/point_data.py +415 -415
  35. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/polygon_data.py +716 -716
  36. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/r_tree.py +319 -319
  37. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/triangle3d_data.py +51 -51
  38. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/__init__.py +1 -1
  39. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/cell_instance.py +166 -166
  40. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/component_group.py +124 -124
  41. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/group.py +123 -123
  42. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/hierarchy_obj.py +88 -88
  43. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/inst_array.py +118 -118
  44. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/layout_component.py +65 -65
  45. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/model.py +18 -18
  46. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/netlist_model.py +35 -35
  47. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/pin_group.py +121 -121
  48. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/pin_pair_model.py +70 -70
  49. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/sparameter_model.py +45 -45
  50. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/spice_model.py +87 -87
  51. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/structure3d.py +88 -88
  52. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/via_group.py +110 -110
  53. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/__init__.py +8 -8
  54. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/base.py +109 -109
  55. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/conn_obj.py +206 -206
  56. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/decorators.py +40 -40
  57. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/edb_logging.py +227 -227
  58. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/exceptions.py +47 -47
  59. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/factory.py +161 -161
  60. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/interceptors.py +258 -252
  61. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/layout_obj.py +105 -105
  62. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/messages.py +1507 -1506
  63. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/parser.py +515 -515
  64. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/rpc_info.py +1511 -1511
  65. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/rpc_info_utils.py +37 -37
  66. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/rpc_response_map.py +1676 -1674
  67. ansys_edb_core-0.4.0.dev0/src/ansys/edb/core/inner/shared_memory_transport.py +247 -0
  68. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/utils.py +80 -80
  69. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/variable_server.py +240 -240
  70. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layer/__init__.py +1 -1
  71. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layer/layer.py +366 -366
  72. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layer/layer_collection.py +574 -574
  73. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layer/stackup_layer.py +338 -338
  74. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layer/via_layer.py +194 -194
  75. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout/__init__.py +1 -1
  76. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout/cell.py +518 -518
  77. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout/layout.py +583 -583
  78. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout/mcad_model.py +275 -275
  79. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout/voltage_regulator.py +332 -332
  80. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/__init__.py +1 -1
  81. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/layout_instance.py +202 -202
  82. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/layout_instance_context.py +87 -87
  83. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/layout_obj_instance.py +103 -103
  84. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/layout_obj_instance_2d_geometry.py +35 -35
  85. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/layout_obj_instance_3d_geometry.py +33 -33
  86. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/layout_obj_instance_geometry.py +58 -58
  87. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/net/__init__.py +1 -1
  88. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/net/differential_pair.py +127 -127
  89. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/net/extended_net.py +83 -83
  90. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/net/net.py +129 -129
  91. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/net/net_class.py +133 -133
  92. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/__init__.py +1 -1
  93. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/board_bend_def.py +111 -111
  94. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/bondwire.py +351 -351
  95. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/circle.py +159 -159
  96. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/padstack_instance.py +522 -522
  97. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/path.py +284 -284
  98. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/polygon.py +76 -76
  99. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/primitive.py +194 -194
  100. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/primitive_instance_collection.py +136 -129
  101. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/rectangle.py +264 -264
  102. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/text.py +104 -104
  103. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/session.py +858 -816
  104. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/__init__.py +1 -1
  105. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/adaptive_solutions.py +439 -439
  106. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/hfss_pi_simulation_settings.py +261 -261
  107. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/hfss_pi_simulation_setup.py +37 -37
  108. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/hfss_simulation_settings.py +463 -463
  109. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/hfss_simulation_setup.py +54 -54
  110. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/mesh_operation.py +280 -280
  111. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/q3d_simulation_settings.py +342 -342
  112. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/q3d_simulation_setup.py +37 -37
  113. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/raptor_x_simulation_settings.py +385 -385
  114. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/raptor_x_simulation_setup.py +31 -31
  115. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/simulation_settings.py +334 -334
  116. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/simulation_setup.py +488 -488
  117. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/siwave_dcir_simulation_settings.py +137 -137
  118. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/siwave_dcir_simulation_setup.py +33 -33
  119. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/siwave_psi_simulation_settings.py +364 -364
  120. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/siwave_psi_simulation_setup.py +39 -39
  121. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/siwave_simulation_settings.py +587 -587
  122. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/siwave_simulation_setup.py +31 -31
  123. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/__init__.py +1 -1
  124. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/bundle_terminal.py +36 -36
  125. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/edge_terminal.py +170 -170
  126. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/padstack_instance_terminal.py +71 -71
  127. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/pin_group_terminal.py +60 -60
  128. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/point_terminal.py +69 -69
  129. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/terminal.py +330 -330
  130. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/terminal_instance.py +55 -55
  131. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/terminal_instance_terminal.py +51 -51
  132. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/typing/__init__.py +15 -15
  133. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/__init__.py +1 -1
  134. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/conversions.py +74 -74
  135. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/edb_error_manager.py +68 -68
  136. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/heat_sink.py +69 -69
  137. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/hfss_extent_info.py +164 -164
  138. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/io_manager.py +460 -460
  139. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/layer_map.py +109 -109
  140. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/material_property_thermal_modifier_params.py +97 -97
  141. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/port_post_processing_prop.py +124 -124
  142. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/rlc.py +123 -123
  143. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/temperature_settings.py +52 -52
  144. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/touchstone_export_settings.py +109 -109
  145. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/transform.py +178 -178
  146. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/transform3d.py +338 -338
  147. {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/value.py +351 -351
  148. ansys_edb_core-0.3.0.dev9/.flake8 +0 -7
  149. ansys_edb_core-0.3.0.dev9/.github/CODEOWNERS +0 -4
  150. ansys_edb_core-0.3.0.dev9/.github/dependabot.yml +0 -37
  151. ansys_edb_core-0.3.0.dev9/.github/workflows/ci_cd.yml +0 -228
  152. ansys_edb_core-0.3.0.dev9/.github/workflows/template.yml +0 -16
  153. ansys_edb_core-0.3.0.dev9/.gitignore +0 -173
  154. ansys_edb_core-0.3.0.dev9/.pre-commit-config.yaml +0 -68
  155. ansys_edb_core-0.3.0.dev9/AUTHORS +0 -12
  156. ansys_edb_core-0.3.0.dev9/CMakeLists.txt +0 -77
  157. ansys_edb_core-0.3.0.dev9/CODE_OF_CONDUCT.md +0 -65
  158. ansys_edb_core-0.3.0.dev9/CONTRIBUTING.md +0 -44
  159. ansys_edb_core-0.3.0.dev9/CONTRIBUTORS.md +0 -25
  160. ansys_edb_core-0.3.0.dev9/deps/IEDB_RPC_Services.h +0 -19
  161. ansys_edb_core-0.3.0.dev9/deps/rpc_executor.h +0 -193
  162. ansys_edb_core-0.3.0.dev9/deps/rpc_executor_bindings.cpp +0 -123
  163. ansys_edb_core-0.3.0.dev9/doc/.vale.ini +0 -35
  164. ansys_edb_core-0.3.0.dev9/doc/Makefile +0 -31
  165. ansys_edb_core-0.3.0.dev9/doc/make.bat +0 -56
  166. ansys_edb_core-0.3.0.dev9/doc/source/_static/README.md +0 -1
  167. ansys_edb_core-0.3.0.dev9/doc/source/_templates/README.md +0 -1
  168. ansys_edb_core-0.3.0.dev9/doc/source/_templates/sidebar-nav-bs.html +0 -10
  169. ansys_edb_core-0.3.0.dev9/doc/source/api/database.rst +0 -15
  170. ansys_edb_core-0.3.0.dev9/doc/source/api/definition.rst +0 -58
  171. ansys_edb_core-0.3.0.dev9/doc/source/api/geometry.rst +0 -29
  172. ansys_edb_core-0.3.0.dev9/doc/source/api/glossary.rst +0 -130
  173. ansys_edb_core-0.3.0.dev9/doc/source/api/hierarchy.rst +0 -38
  174. ansys_edb_core-0.3.0.dev9/doc/source/api/index.rst +0 -30
  175. ansys_edb_core-0.3.0.dev9/doc/source/api/layer.rst +0 -31
  176. ansys_edb_core-0.3.0.dev9/doc/source/api/layout.rst +0 -25
  177. ansys_edb_core-0.3.0.dev9/doc/source/api/layout_instance.rst +0 -16
  178. ansys_edb_core-0.3.0.dev9/doc/source/api/net.rst +0 -15
  179. ansys_edb_core-0.3.0.dev9/doc/source/api/primitive.rst +0 -37
  180. ansys_edb_core-0.3.0.dev9/doc/source/api/release_notes.rst +0 -10
  181. ansys_edb_core-0.3.0.dev9/doc/source/api/session.rst +0 -17
  182. ansys_edb_core-0.3.0.dev9/doc/source/api/simulation_setup.rst +0 -98
  183. ansys_edb_core-0.3.0.dev9/doc/source/api/terminal.rst +0 -27
  184. ansys_edb_core-0.3.0.dev9/doc/source/api/utility.rst +0 -37
  185. ansys_edb_core-0.3.0.dev9/doc/source/conf.py +0 -130
  186. ansys_edb_core-0.3.0.dev9/doc/source/contribute.rst +0 -199
  187. ansys_edb_core-0.3.0.dev9/doc/source/examples/index.rst +0 -52
  188. ansys_edb_core-0.3.0.dev9/doc/source/getting_started/index.rst +0 -27
  189. ansys_edb_core-0.3.0.dev9/doc/source/index.rst +0 -23
  190. ansys_edb_core-0.3.0.dev9/doc/source/user_guide/index.rst +0 -9
  191. ansys_edb_core-0.3.0.dev9/doc/styles/.gitignore +0 -6
  192. ansys_edb_core-0.3.0.dev9/doc/styles/config/vocabularies/ANSYS/accept.txt +0 -16
  193. ansys_edb_core-0.3.0.dev9/doc/styles/config/vocabularies/ANSYS/reject.txt +0 -0
  194. ansys_edb_core-0.3.0.dev9/notebooks/3d_comp_placement.ipynb +0 -97
  195. ansys_edb_core-0.3.0.dev9/notebooks/Cutout_region.ipynb +0 -254
  196. ansys_edb_core-0.3.0.dev9/notebooks/Define_and_assign_bondwire_profiles.ipynb +0 -302
  197. ansys_edb_core-0.3.0.dev9/notebooks/Move_geometry_from_existing_layer_to_new_layer.ipynb +0 -181
  198. ansys_edb_core-0.3.0.dev9/notebooks/PolygonOperations.ipynb +0 -117
  199. ansys_edb_core-0.3.0.dev9/notebooks/Remove_all_geometry_and_layers_below_L2.ipynb +0 -267
  200. ansys_edb_core-0.3.0.dev9/notebooks/assign_ds_model.aedb/edb.def +0 -0
  201. ansys_edb_core-0.3.0.dev9/notebooks/assign_ds_model.ipynb +0 -140
  202. ansys_edb_core-0.3.0.dev9/notebooks/change_capacitor_models.aedb/edb.def +0 -0
  203. ansys_edb_core-0.3.0.dev9/notebooks/change_capacitor_models.aedb/stride/model.index +0 -2
  204. ansys_edb_core-0.3.0.dev9/notebooks/change_capacitor_models.ipynb +0 -140
  205. ansys_edb_core-0.3.0.dev9/notebooks/fixtures/3d_comp_placement/3d_comp_placement.a3dcomp +0 -507
  206. ansys_edb_core-0.3.0.dev9/notebooks/helpers/example_setup.ipynb +0 -350
  207. ansys_edb_core-0.3.0.dev9/notebooks/helpers/example_teardown.ipynb +0 -36
  208. ansys_edb_core-0.3.0.dev9/notebooks/helpers/plot.ipynb +0 -103
  209. ansys_edb_core-0.3.0.dev9/notebooks/stackup_export.aedb/edb.def +0 -0
  210. ansys_edb_core-0.3.0.dev9/notebooks/stackup_export.ipynb +0 -204
  211. ansys_edb_core-0.3.0.dev9/notebooks/template.ipynb +0 -37
  212. ansys_edb_core-0.3.0.dev9/scripts/bootstrap.ps1 +0 -242
  213. ansys_edb_core-0.3.0.dev9/scripts/bootstrap.sh +0 -145
  214. ansys_edb_core-0.3.0.dev9/scripts/cleanipynb.py +0 -64
  215. ansys_edb_core-0.3.0.dev9/scripts/proto_parser/generate_rpc_info.py +0 -111
  216. ansys_edb_core-0.3.0.dev9/scripts/proto_parser/parse_protos.sh +0 -76
  217. ansys_edb_core-0.3.0.dev9/src/ansys/edb/core/__init__.py +0 -17
  218. ansys_edb_core-0.3.0.dev9/src/ansys_edb_core_preload.pth +0 -1
  219. ansys_edb_core-0.3.0.dev9/src/ansys_edb_core_preload.py +0 -95
  220. ansys_edb_core-0.3.0.dev9/tests/e2e/conftest.py +0 -147
  221. ansys_edb_core-0.3.0.dev9/tests/e2e/integration_tests/test_padstack.py +0 -14
  222. ansys_edb_core-0.3.0.dev9/tests/e2e/integration_tests/test_siwave_simulation_setup.py +0 -37
  223. ansys_edb_core-0.3.0.dev9/tests/e2e/integration_tests/test_spiral_inductor.py +0 -423
  224. ansys_edb_core-0.3.0.dev9/tests/e2e/scratch/io_performance_scratch.py +0 -156
  225. ansys_edb_core-0.3.0.dev9/tests/e2e/scratch/sim_setup_scratch.py +0 -330
  226. ansys_edb_core-0.3.0.dev9/tests/e2e/scratch/test_board_bend_def.py +0 -68
  227. ansys_edb_core-0.3.0.dev9/tests/e2e/scratch/test_component_property.py +0 -130
  228. ansys_edb_core-0.3.0.dev9/tests/e2e/scratch/test_power_module.py +0 -69
  229. ansys_edb_core-0.3.0.dev9/tests/e2e/scratch/test_value.py +0 -99
  230. ansys_edb_core-0.3.0.dev9/tests/e2e/settings.py +0 -19
  231. ansys_edb_core-0.3.0.dev9/tests/e2e/unit_tests/test_cell.py +0 -10
  232. ansys_edb_core-0.3.0.dev9/tests/e2e/unit_tests/test_edge_terminal.py +0 -38
  233. ansys_edb_core-0.3.0.dev9/tests/e2e/unit_tests/test_layer_collection.py +0 -24
  234. ansys_edb_core-0.3.0.dev9/tests/e2e/unit_tests/test_session.py +0 -30
  235. ansys_edb_core-0.3.0.dev9/tests/mock/test_arc_data.py +0 -151
  236. ansys_edb_core-0.3.0.dev9/tests/mock/test_database.py +0 -249
  237. ansys_edb_core-0.3.0.dev9/tests/mock/test_metadata.py +0 -14
  238. ansys_edb_core-0.3.0.dev9/tests/mock/test_point_data.py +0 -74
  239. ansys_edb_core-0.3.0.dev9/tests/mock/test_terminals.py +0 -224
  240. ansys_edb_core-0.3.0.dev9/tests/mock/utils/__init__.py +0 -0
  241. ansys_edb_core-0.3.0.dev9/tests/mock/utils/fixtures.py +0 -118
  242. ansys_edb_core-0.3.0.dev9/tests/mock/utils/test_utils.py +0 -108
  243. ansys_edb_core-0.3.0.dev9/tox.ini +0 -67
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2023 ANSYS, Inc. All rights reserved.
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2023 ANSYS, Inc. All rights reserved.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,31 +1,11 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: ansys-edb-core
3
- Version: 0.3.0.dev9
3
+ Version: 0.4.0.dev0
4
4
  Summary: A python wrapper for Ansys Edb service
5
- Author-Email: "ANSYS, Inc." <pyansys.support@ansys.com>
6
- Maintainer-Email: PyAnsys developers <pyansys.maintainers@ansys.com>
7
- License: MIT License
8
-
9
- Copyright (c) 2023 ANSYS, Inc. All rights reserved.
10
-
11
- Permission is hereby granted, free of charge, to any person obtaining a copy
12
- of this software and associated documentation files (the "Software"), to deal
13
- in the Software without restriction, including without limitation the rights
14
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
- copies of the Software, and to permit persons to whom the Software is
16
- furnished to do so, subject to the following conditions:
17
-
18
- The above copyright notice and this permission notice shall be included in all
19
- copies or substantial portions of the Software.
20
-
21
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
- SOFTWARE.
28
-
5
+ Author-email: "ANSYS, Inc." <pyansys.support@ansys.com>
6
+ Maintainer-email: PyAnsys developers <pyansys.maintainers@ansys.com>
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/x-rst
29
9
  Classifier: Development Status :: 4 - Beta
30
10
  Classifier: Intended Audience :: Science/Research
31
11
  Classifier: Topic :: Scientific/Engineering :: Information Analysis
@@ -35,30 +15,29 @@ Classifier: Programming Language :: Python :: 3.10
35
15
  Classifier: Programming Language :: Python :: 3.11
36
16
  Classifier: Programming Language :: Python :: 3.12
37
17
  Classifier: Programming Language :: Python :: 3.13
18
+ License-File: LICENSE
19
+ Requires-Dist: ansys-api-edb==0.4.dev0
20
+ Requires-Dist: protobuf>=5.29.6,<7
21
+ Requires-Dist: grpcio>=1.44.0
22
+ Requires-Dist: ansys-tools-common>=0.3.1
23
+ Requires-Dist: sphinx==7.4.7 ; extra == "doc"
24
+ Requires-Dist: numpydoc==1.9.0 ; extra == "doc"
25
+ Requires-Dist: ansys_sphinx_theme>=0.12.2 ; extra == "doc"
26
+ Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
27
+ Requires-Dist: notebook ; extra == "notebook"
28
+ Requires-Dist: matplotlib ; extra == "notebook"
29
+ Requires-Dist: ipynbname ; extra == "notebook"
30
+ Requires-Dist: pytest==8.4.1 ; extra == "tests"
31
+ Requires-Dist: pytest-cov==6.2.1 ; extra == "tests"
32
+ Requires-Dist: pytest-mock==3.14.1 ; extra == "tests"
33
+ Requires-Dist: tox ; extra == "tests"
38
34
  Project-URL: Documentation, https://edb.core.docs.pyansys.com
39
- Project-URL: Source, https://github.com/ansys/pyedb-core
40
35
  Project-URL: Homepage, https://github.com/ansys/pyedb-core
36
+ Project-URL: Source, https://github.com/ansys/pyedb-core
41
37
  Project-URL: Tracker, https://github.com/ansys/pyedb-core/issues
42
- Requires-Python: >=3.10
43
- Requires-Dist: ansys-api-edb==0.3.dev10
44
- Requires-Dist: protobuf<5,>=3.19.3
45
- Requires-Dist: grpcio>=1.44.0
46
- Requires-Dist: ansys-tools-common>=0.3.1
38
+ Provides-Extra: doc
47
39
  Provides-Extra: notebook
48
- Requires-Dist: notebook; extra == "notebook"
49
- Requires-Dist: matplotlib; extra == "notebook"
50
- Requires-Dist: ipynbname; extra == "notebook"
51
40
  Provides-Extra: tests
52
- Requires-Dist: pytest==8.4.1; extra == "tests"
53
- Requires-Dist: pytest-cov==6.2.1; extra == "tests"
54
- Requires-Dist: pytest-mock==3.14.1; extra == "tests"
55
- Requires-Dist: tox; extra == "tests"
56
- Provides-Extra: doc
57
- Requires-Dist: sphinx==7.4.7; extra == "doc"
58
- Requires-Dist: numpydoc==1.9.0; extra == "doc"
59
- Requires-Dist: ansys_sphinx_theme>=0.12.2; extra == "doc"
60
- Requires-Dist: sphinx-copybutton==0.5.2; extra == "doc"
61
- Description-Content-Type: text/x-rst
62
41
 
63
42
  PyEDB-Core
64
43
  ==========
@@ -143,3 +122,4 @@ PyEDB-Core is licensed under the MIT license.
143
122
  PyEDB-Core makes no commercial claim over Ansys whatsoever. The use of this Python client requires
144
123
  a legally licensed copy of AEDT. For more information, see the
145
124
  `Ansys Electronics <https://www.ansys.com/products/electronics>`_ page on the Ansys website.
125
+
@@ -1,83 +1,83 @@
1
- PyEDB-Core
2
- ==========
3
-
4
- |pyansys| |python| |pypi| |MIT|
5
-
6
- .. |pyansys| image:: https://img.shields.io/badge/Py-Ansys-ffc107.svg?logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAABDklEQVQ4jWNgoDfg5mD8vE7q/3bpVyskbW0sMRUwofHD7Dh5OBkZGBgW7/3W2tZpa2tLQEOyOzeEsfumlK2tbVpaGj4N6jIs1lpsDAwMJ278sveMY2BgCA0NFRISwqkhyQ1q/Nyd3zg4OBgYGNjZ2ePi4rB5loGBhZnhxTLJ/9ulv26Q4uVk1NXV/f///////69du4Zdg78lx//t0v+3S88rFISInD59GqIH2esIJ8G9O2/XVwhjzpw5EAam1xkkBJn/bJX+v1365hxxuCAfH9+3b9/+////48cPuNehNsS7cDEzMTAwMMzb+Q2u4dOnT2vWrMHu9ZtzxP9vl/69RVpCkBlZ3N7enoDXBwEAAA+YYitOilMVAAAAAElFTkSuQmCC
7
- :target: https://docs.pyansys.com/
8
- :alt: PyAnsys
9
-
10
- .. |python| image:: https://img.shields.io/pypi/pyversions/ansys-edb-core?logo=pypi
11
- :target: https://pypi.org/project/ansys-edb-core/
12
- :alt: Python
13
-
14
- .. |pypi| image:: https://img.shields.io/pypi/v/ansys-edb-core.svg?logo=python&logoColor=white
15
- :target: https://pypi.org/project/ansys-edb-core
16
- :alt: PyPI
17
-
18
- .. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
19
- :target: https://opensource.org/licenses/MIT
20
- :alt: MIT
21
-
22
- |GH-CI| |black|
23
-
24
- .. |GH-CI| image:: https://github.com/ansys/pyedb-core/actions/workflows/ci_cd.yml/badge.svg
25
- :target: https://github.com/ansys/pyedb-core/actions/workflows/ci_cd.yml
26
- :alt: GH-CI
27
-
28
- .. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=flat
29
- :target: https://github.com/psf/black
30
- :alt: Black
31
-
32
- .. reuse_start
33
-
34
- PyEDB-Core is a Python client for the Electronics Database (EDB), a format for storing
35
- information describing designs for Ansys Electronic Desktop (AEDT). Using the PyEDB-Core API,
36
- you can make calls to an EDB server that is running either locally or remotely.
37
-
38
- The EDB server can create, edit, read, and write EDB files to disk. These files can then be
39
- read into AEDT and their designs simulated.
40
-
41
- Documentation and issues
42
- ~~~~~~~~~~~~~~~~~~~~~~~~
43
- Documentation for the latest stable release of PyEDB-Core is hosted at
44
- `PyEDB-Core documentation <https://edb.core.docs.pyansys.com/version/stable/index.html#>`_.
45
- The documentation has five sections:
46
-
47
- - `Getting started <https://edb.core.docs.pyansys.com/version/stable/getting_started/index.html#>`_: Describes
48
- how to install PyEDB-Core in user mode.
49
- - `User guide <https://edb.core.docs.pyansys.com/version/stable/user_guide/index.html>`_: Describes how to
50
- use PyEDB-Core.
51
- - `API reference <https://edb.core.docs.pyansys.com/version/stable/api/index.html>`_: Provides API member descriptions
52
- and usage examples.
53
- - `Examples <https://edb.core.docs.pyansys.com/version/stable/examples/index.html>`_: Provides examples showing
54
- end-to-end workflows for using PyEDB-Core.
55
- - `Contribute <https://edb.core.docs.pyansys.com/version/stable/contribute.html>`_: Describes how to install
56
- PyEDB-Core in developer mode and how to contribute to this PyAnsys library.
57
-
58
- In the upper right corner of the documentation's title bar, there is an option for switching from
59
- viewing the documentation for the latest stable release to viewing the documentation for the
60
- development version or previously released versions.
61
-
62
- On the `PyEDB-Core Issues <https://github.com/ansys/pyedb-core/issues>`_ page, you can create
63
- issues to report bugs and request new features. When possible, use these issue templates:
64
-
65
- * Bug report template
66
- * Feature request template
67
- * Documentation issue template
68
- * Example request template
69
-
70
- If your issue does not fit into one of these categories, create your own issue.
71
-
72
- On the `Discussions <https://discuss.ansys.com/>`_ page on the Ansys Developer portal, you can post questions,
73
- share ideas, and get community feedback.
74
-
75
- To reach the PyAnsys support team, email `pyansys.core@ansys.com <pyansys.core@ansys.com>`_.
76
-
77
- License
78
- ~~~~~~~
79
- PyEDB-Core is licensed under the MIT license.
80
-
81
- PyEDB-Core makes no commercial claim over Ansys whatsoever. The use of this Python client requires
82
- a legally licensed copy of AEDT. For more information, see the
83
- `Ansys Electronics <https://www.ansys.com/products/electronics>`_ page on the Ansys website.
1
+ PyEDB-Core
2
+ ==========
3
+
4
+ |pyansys| |python| |pypi| |MIT|
5
+
6
+ .. |pyansys| image:: https://img.shields.io/badge/Py-Ansys-ffc107.svg?logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAABDklEQVQ4jWNgoDfg5mD8vE7q/3bpVyskbW0sMRUwofHD7Dh5OBkZGBgW7/3W2tZpa2tLQEOyOzeEsfumlK2tbVpaGj4N6jIs1lpsDAwMJ278sveMY2BgCA0NFRISwqkhyQ1q/Nyd3zg4OBgYGNjZ2ePi4rB5loGBhZnhxTLJ/9ulv26Q4uVk1NXV/f///////69du4Zdg78lx//t0v+3S88rFISInD59GqIH2esIJ8G9O2/XVwhjzpw5EAam1xkkBJn/bJX+v1365hxxuCAfH9+3b9/+////48cPuNehNsS7cDEzMTAwMMzb+Q2u4dOnT2vWrMHu9ZtzxP9vl/69RVpCkBlZ3N7enoDXBwEAAA+YYitOilMVAAAAAElFTkSuQmCC
7
+ :target: https://docs.pyansys.com/
8
+ :alt: PyAnsys
9
+
10
+ .. |python| image:: https://img.shields.io/pypi/pyversions/ansys-edb-core?logo=pypi
11
+ :target: https://pypi.org/project/ansys-edb-core/
12
+ :alt: Python
13
+
14
+ .. |pypi| image:: https://img.shields.io/pypi/v/ansys-edb-core.svg?logo=python&logoColor=white
15
+ :target: https://pypi.org/project/ansys-edb-core
16
+ :alt: PyPI
17
+
18
+ .. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
19
+ :target: https://opensource.org/licenses/MIT
20
+ :alt: MIT
21
+
22
+ |GH-CI| |black|
23
+
24
+ .. |GH-CI| image:: https://github.com/ansys/pyedb-core/actions/workflows/ci_cd.yml/badge.svg
25
+ :target: https://github.com/ansys/pyedb-core/actions/workflows/ci_cd.yml
26
+ :alt: GH-CI
27
+
28
+ .. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=flat
29
+ :target: https://github.com/psf/black
30
+ :alt: Black
31
+
32
+ .. reuse_start
33
+
34
+ PyEDB-Core is a Python client for the Electronics Database (EDB), a format for storing
35
+ information describing designs for Ansys Electronic Desktop (AEDT). Using the PyEDB-Core API,
36
+ you can make calls to an EDB server that is running either locally or remotely.
37
+
38
+ The EDB server can create, edit, read, and write EDB files to disk. These files can then be
39
+ read into AEDT and their designs simulated.
40
+
41
+ Documentation and issues
42
+ ~~~~~~~~~~~~~~~~~~~~~~~~
43
+ Documentation for the latest stable release of PyEDB-Core is hosted at
44
+ `PyEDB-Core documentation <https://edb.core.docs.pyansys.com/version/stable/index.html#>`_.
45
+ The documentation has five sections:
46
+
47
+ - `Getting started <https://edb.core.docs.pyansys.com/version/stable/getting_started/index.html#>`_: Describes
48
+ how to install PyEDB-Core in user mode.
49
+ - `User guide <https://edb.core.docs.pyansys.com/version/stable/user_guide/index.html>`_: Describes how to
50
+ use PyEDB-Core.
51
+ - `API reference <https://edb.core.docs.pyansys.com/version/stable/api/index.html>`_: Provides API member descriptions
52
+ and usage examples.
53
+ - `Examples <https://edb.core.docs.pyansys.com/version/stable/examples/index.html>`_: Provides examples showing
54
+ end-to-end workflows for using PyEDB-Core.
55
+ - `Contribute <https://edb.core.docs.pyansys.com/version/stable/contribute.html>`_: Describes how to install
56
+ PyEDB-Core in developer mode and how to contribute to this PyAnsys library.
57
+
58
+ In the upper right corner of the documentation's title bar, there is an option for switching from
59
+ viewing the documentation for the latest stable release to viewing the documentation for the
60
+ development version or previously released versions.
61
+
62
+ On the `PyEDB-Core Issues <https://github.com/ansys/pyedb-core/issues>`_ page, you can create
63
+ issues to report bugs and request new features. When possible, use these issue templates:
64
+
65
+ * Bug report template
66
+ * Feature request template
67
+ * Documentation issue template
68
+ * Example request template
69
+
70
+ If your issue does not fit into one of these categories, create your own issue.
71
+
72
+ On the `Discussions <https://discuss.ansys.com/>`_ page on the Ansys Developer portal, you can post questions,
73
+ share ideas, and get community feedback.
74
+
75
+ To reach the PyAnsys support team, email `pyansys.core@ansys.com <pyansys.core@ansys.com>`_.
76
+
77
+ License
78
+ ~~~~~~~
79
+ PyEDB-Core is licensed under the MIT license.
80
+
81
+ PyEDB-Core makes no commercial claim over Ansys whatsoever. The use of this Python client requires
82
+ a legally licensed copy of AEDT. For more information, see the
83
+ `Ansys Electronics <https://www.ansys.com/products/electronics>`_ page on the Ansys website.
@@ -1,81 +1,80 @@
1
- [build-system]
2
- requires = ["scikit-build-core>=0.9", "pybind11>=2.11"]
3
- build-backend = "scikit_build_core.build"
4
-
5
- [project]
6
- # Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
7
- name = "ansys-edb-core"
8
- version = "0.3.0.dev9"
9
- description = "A python wrapper for Ansys Edb service"
10
- readme = "README.rst"
11
- requires-python = ">=3.10"
12
- license = {file = "LICENSE"}
13
- authors = [{name = "ANSYS, Inc.", email = "pyansys.support@ansys.com"}]
14
- maintainers = [{name = "PyAnsys developers", email = "pyansys.maintainers@ansys.com"}]
15
- classifiers = [
16
- "Development Status :: 4 - Beta",
17
- "Intended Audience :: Science/Research",
18
- "Topic :: Scientific/Engineering :: Information Analysis",
19
- "License :: OSI Approved :: MIT License",
20
- "Operating System :: OS Independent",
21
- "Programming Language :: Python :: 3.10",
22
- "Programming Language :: Python :: 3.11",
23
- "Programming Language :: Python :: 3.12",
24
- "Programming Language :: Python :: 3.13"
25
- ]
26
-
27
-
28
- dependencies = [
29
- "ansys-api-edb==0.3.dev10",
30
- "protobuf>=3.19.3,<5",
31
- "grpcio>=1.44.0",
32
- "ansys-tools-common>=0.3.1"
33
- ]
34
-
35
- [project.urls]
36
- Documentation = "https://edb.core.docs.pyansys.com"
37
- Source = "https://github.com/ansys/pyedb-core"
38
- Homepage = "https://github.com/ansys/pyedb-core"
39
- Tracker = "https://github.com/ansys/pyedb-core/issues"
40
-
41
- # FIXME: add versions
42
- [project.optional-dependencies]
43
- notebook = [
44
- "notebook",
45
- "matplotlib",
46
- "ipynbname"
47
- ]
48
- # FIXME: update to newer versions
49
- tests = [
50
- "pytest==8.4.1",
51
- "pytest-cov==6.2.1",
52
- "pytest-mock==3.14.1",
53
- "tox",
54
- ]
55
- # FIXME: update to newer versions
56
- doc = [
57
- "sphinx==7.4.7",
58
- "numpydoc==1.9.0",
59
- "ansys_sphinx_theme>=0.12.2",
60
- "sphinx-copybutton==0.5.2",
61
- ]
62
-
63
- [tool.scikit-build]
64
- # Include the pure-Python source tree alongside the compiled extension.
65
- wheel.packages = ["src/ansys"]
66
-
67
- [tool.black]
68
- line-length = 100
69
-
70
- [tool.isort]
71
- profile = "black"
72
- force_sort_within_sections = true
73
- line_length = 100
74
- default_section = "THIRDPARTY"
75
- src_paths = ["doc", "src", "tests"]
76
-
77
- [tool.coverage.run]
78
- source = ["ansys.edb"]
79
-
80
- [tool.coverage.report]
81
- show_missing = true
1
+ [build-system]
2
+ requires = ["flit_core >=3.2,<4"]
3
+ build-backend = "flit_core.buildapi"
4
+
5
+ [project]
6
+ # Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
7
+ name = "ansys-edb-core"
8
+ version = "0.4.0.dev0"
9
+ description = "A python wrapper for Ansys Edb service"
10
+ readme = "README.rst"
11
+ requires-python = ">=3.10"
12
+ license = {file = "LICENSE"}
13
+ authors = [{name = "ANSYS, Inc.", email = "pyansys.support@ansys.com"}]
14
+ maintainers = [{name = "PyAnsys developers", email = "pyansys.maintainers@ansys.com"}]
15
+ classifiers = [
16
+ "Development Status :: 4 - Beta",
17
+ "Intended Audience :: Science/Research",
18
+ "Topic :: Scientific/Engineering :: Information Analysis",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Operating System :: OS Independent",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Programming Language :: Python :: 3.13"
25
+ ]
26
+
27
+
28
+ dependencies = [
29
+ "ansys-api-edb==0.4.dev0",
30
+ "protobuf>=5.29.6,<7",
31
+ "grpcio>=1.44.0",
32
+ "ansys-tools-common>=0.3.1"
33
+ ]
34
+
35
+ [project.urls]
36
+ Documentation = "https://edb.core.docs.pyansys.com"
37
+ Source = "https://github.com/ansys/pyedb-core"
38
+ Homepage = "https://github.com/ansys/pyedb-core"
39
+ Tracker = "https://github.com/ansys/pyedb-core/issues"
40
+
41
+ # FIXME: add versions
42
+ [project.optional-dependencies]
43
+ notebook = [
44
+ "notebook",
45
+ "matplotlib",
46
+ "ipynbname"
47
+ ]
48
+ # FIXME: update to newer versions
49
+ tests = [
50
+ "pytest==8.4.1",
51
+ "pytest-cov==6.2.1",
52
+ "pytest-mock==3.14.1",
53
+ "tox",
54
+ ]
55
+ # FIXME: update to newer versions
56
+ doc = [
57
+ "sphinx==7.4.7",
58
+ "numpydoc==1.9.0",
59
+ "ansys_sphinx_theme>=0.12.2",
60
+ "sphinx-copybutton==0.5.2",
61
+ ]
62
+
63
+ [tool.flit.module]
64
+ name = "ansys.edb.core"
65
+
66
+ [tool.black]
67
+ line-length = 100
68
+
69
+ [tool.isort]
70
+ profile = "black"
71
+ force_sort_within_sections = true
72
+ line_length = 100
73
+ default_section = "THIRDPARTY"
74
+ src_paths = ["doc", "src", "tests"]
75
+
76
+ [tool.coverage.run]
77
+ source = ["ansys.edb"]
78
+
79
+ [tool.coverage.report]
80
+ show_missing = true
@@ -0,0 +1,8 @@
1
+ """EDB-Core Python package for the Electronics Database (EDB) format."""
2
+
3
+ try:
4
+ import importlib.metadata as importlib_metadata
5
+ except ModuleNotFoundError:
6
+ import importlib_metadata
7
+
8
+ __version__ = importlib_metadata.version("ansys-edb-core")