pyedb 0.21.0__tar.gz → 0.66.0__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 (351) hide show
  1. {pyedb-0.21.0 → pyedb-0.66.0}/LICENSE +7 -7
  2. {pyedb-0.21.0 → pyedb-0.66.0}/PKG-INFO +46 -33
  3. {pyedb-0.21.0 → pyedb-0.66.0}/README.md +9 -8
  4. pyedb-0.66.0/pyproject.toml +314 -0
  5. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/__init__.py +23 -8
  6. pyedb-0.66.0/src/pyedb/common/__init__.py +21 -0
  7. pyedb-0.66.0/src/pyedb/common/nets.py +439 -0
  8. pyedb-0.66.0/src/pyedb/component_libraries/ansys_components.py +153 -0
  9. pyedb-0.66.0/src/pyedb/configuration/__init__.py +21 -0
  10. pyedb-0.66.0/src/pyedb/configuration/cfg_boundaries.py +149 -0
  11. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/configuration/cfg_common.py +20 -3
  12. pyedb-0.66.0/src/pyedb/configuration/cfg_components.py +297 -0
  13. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/configuration/cfg_data.py +23 -15
  14. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/configuration/cfg_general.py +25 -9
  15. pyedb-0.66.0/src/pyedb/configuration/cfg_modeler.py +203 -0
  16. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/configuration/cfg_nets.py +20 -18
  17. pyedb-0.66.0/src/pyedb/configuration/cfg_operations.py +53 -0
  18. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/configuration/cfg_package_definition.py +30 -25
  19. pyedb-0.66.0/src/pyedb/configuration/cfg_padstacks.py +127 -0
  20. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/configuration/cfg_pin_groups.py +34 -29
  21. pyedb-0.66.0/src/pyedb/configuration/cfg_ports_sources.py +781 -0
  22. pyedb-0.66.0/src/pyedb/configuration/cfg_s_parameter_models.py +116 -0
  23. pyedb-0.66.0/src/pyedb/configuration/cfg_setup.py +234 -0
  24. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/configuration/cfg_spice_models.py +13 -9
  25. pyedb-0.66.0/src/pyedb/configuration/cfg_stackup.py +103 -0
  26. pyedb-0.66.0/src/pyedb/configuration/cfg_terminals.py +254 -0
  27. pyedb-0.66.0/src/pyedb/configuration/configuration.py +883 -0
  28. pyedb-0.66.0/src/pyedb/dotnet/__init__.py +21 -0
  29. pyedb-0.66.0/src/pyedb/dotnet/clr_module.py +166 -0
  30. {pyedb-0.21.0/src/pyedb/dotnet/application → pyedb-0.66.0/src/pyedb/dotnet/database}/Variables.py +120 -103
  31. pyedb-0.66.0/src/pyedb/dotnet/database/__init__.py +23 -0
  32. pyedb-0.66.0/src/pyedb/dotnet/database/cell/__init__.py +21 -0
  33. pyedb-0.66.0/src/pyedb/dotnet/database/cell/cell.py +21 -0
  34. pyedb-0.66.0/src/pyedb/dotnet/database/cell/connectable.py +114 -0
  35. pyedb-0.66.0/src/pyedb/dotnet/database/cell/hierarchy/__init__.py +21 -0
  36. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/hierarchy/component.py +160 -80
  37. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/hierarchy/hierarchy_obj.py +13 -2
  38. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/hierarchy/model.py +4 -31
  39. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/hierarchy/netlist_model.py +1 -1
  40. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/hierarchy/pin_pair_model.py +4 -4
  41. pyedb-0.66.0/src/pyedb/dotnet/database/cell/hierarchy/s_parameter_model.py +37 -0
  42. pyedb-0.66.0/src/pyedb/dotnet/database/cell/hierarchy/spice_model.py +40 -0
  43. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/layout.py +168 -57
  44. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/layout_obj.py +7 -16
  45. pyedb-0.66.0/src/pyedb/dotnet/database/cell/primitive/__init__.py +25 -0
  46. pyedb-0.21.0/src/pyedb/dotnet/edb_core/cell/primitive.py → pyedb-0.66.0/src/pyedb/dotnet/database/cell/primitive/bondwire.py +2 -147
  47. pyedb-0.66.0/src/pyedb/dotnet/database/cell/primitive/path.py +361 -0
  48. pyedb-0.66.0/src/pyedb/dotnet/database/cell/primitive/primitive.py +839 -0
  49. pyedb-0.66.0/src/pyedb/dotnet/database/cell/terminal/__init__.py +21 -0
  50. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/terminal/bundle_terminal.py +17 -7
  51. pyedb-0.66.0/src/pyedb/dotnet/database/cell/terminal/edge_terminal.py +105 -0
  52. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/terminal/padstack_instance_terminal.py +28 -6
  53. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/terminal/pingroup_terminal.py +13 -7
  54. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/terminal/point_terminal.py +35 -5
  55. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/terminal/terminal.py +112 -85
  56. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/cell/voltage_regulator.py +3 -24
  57. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/components.py +459 -355
  58. pyedb-0.66.0/src/pyedb/dotnet/database/definition/__init__.py +21 -0
  59. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/definition/component_def.py +39 -13
  60. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/definition/component_model.py +3 -7
  61. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/definition/definition_obj.py +2 -2
  62. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/definition/definitions.py +3 -3
  63. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/definition/package_def.py +36 -13
  64. pyedb-0.66.0/src/pyedb/dotnet/database/dotnet/__init__.py +21 -0
  65. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/dotnet/database.py +55 -245
  66. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/dotnet/primitive.py +32 -169
  67. pyedb-0.66.0/src/pyedb/dotnet/database/edb_data/__init__.py +21 -0
  68. pyedb-0.66.0/src/pyedb/dotnet/database/edb_data/control_file.py +1356 -0
  69. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/edb_data/design_options.py +20 -2
  70. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/edb_data/edbvalue.py +1 -1
  71. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/edb_data/hfss_extent_info.py +70 -22
  72. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/edb_data/layer_data.py +222 -44
  73. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/edb_data/nets_data.py +22 -27
  74. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/edb_data/padstacks_data.py +670 -295
  75. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/edb_data/ports.py +9 -75
  76. pyedb-0.66.0/src/pyedb/dotnet/database/edb_data/primitives_data.py +530 -0
  77. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/edb_data/raptor_x_simulation_setup_data.py +23 -24
  78. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/edb_data/simulation_configuration.py +15 -34
  79. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/edb_data/sources.py +31 -12
  80. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/edb_data/utilities.py +2 -2
  81. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/edb_data/variables.py +10 -6
  82. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/general.py +16 -9
  83. pyedb-0.66.0/src/pyedb/dotnet/database/geometry/__init__.py +21 -0
  84. pyedb-0.66.0/src/pyedb/dotnet/database/geometry/point_data.py +67 -0
  85. pyedb-0.66.0/src/pyedb/dotnet/database/geometry/polygon_data.py +167 -0
  86. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/hfss.py +104 -91
  87. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/layout_obj_instance.py +2 -2
  88. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/layout_validation.py +64 -35
  89. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/materials.py +210 -89
  90. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/modeler.py +250 -197
  91. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/net_class.py +14 -9
  92. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/nets.py +64 -507
  93. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/padstack.py +701 -134
  94. pyedb-0.66.0/src/pyedb/dotnet/database/sim_setup_data/__init__.py +25 -0
  95. pyedb-0.66.0/src/pyedb/dotnet/database/sim_setup_data/data/__init__.py +25 -0
  96. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/sim_setup_data/data/adaptive_frequency_data.py +1 -1
  97. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/sim_setup_data/data/mesh_operation.py +26 -2
  98. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/sim_setup_data/data/settings.py +73 -6
  99. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/sim_setup_data/data/sim_setup_info.py +3 -3
  100. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/sim_setup_data/data/simulation_settings.py +2 -2
  101. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/sim_setup_data/data/siw_dc_ir_settings.py +2 -2
  102. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/sim_setup_data/data/sweep_data.py +68 -15
  103. pyedb-0.66.0/src/pyedb/dotnet/database/sim_setup_data/io/__init__.py +21 -0
  104. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/sim_setup_data/io/siwave.py +80 -2
  105. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/siwave.py +120 -99
  106. pyedb-0.66.0/src/pyedb/dotnet/database/source_excitations.py +108 -0
  107. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/stackup.py +245 -251
  108. pyedb-0.66.0/src/pyedb/dotnet/database/utilities/__init__.py +25 -0
  109. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/utilities/heatsink.py +27 -5
  110. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/utilities/hfss_simulation_setup.py +102 -22
  111. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/utilities/obj_base.py +5 -18
  112. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/utilities/simulation_setup.py +80 -46
  113. pyedb-0.66.0/src/pyedb/dotnet/database/utilities/siwave_cpa_simulation_setup.py +917 -0
  114. {pyedb-0.21.0/src/pyedb/dotnet/edb_core → pyedb-0.66.0/src/pyedb/dotnet/database}/utilities/siwave_simulation_setup.py +339 -19
  115. pyedb-0.66.0/src/pyedb/dotnet/database/utilities/value.py +116 -0
  116. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/dotnet/edb.py +1045 -670
  117. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/edb_logger.py +13 -28
  118. pyedb-0.66.0/src/pyedb/exceptions.py +27 -0
  119. pyedb-0.66.0/src/pyedb/extensions/__init__.py +21 -0
  120. pyedb-0.66.0/src/pyedb/extensions/create_cell_array.py +412 -0
  121. pyedb-0.66.0/src/pyedb/extensions/dxf_swap_backend.py +252 -0
  122. pyedb-0.66.0/src/pyedb/extensions/via_design_backend.py +713 -0
  123. pyedb-0.66.0/src/pyedb/generic/__init__.py +21 -0
  124. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/generic/constants.py +1 -1
  125. pyedb-0.66.0/src/pyedb/generic/control_file.py +1753 -0
  126. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/generic/data_handlers.py +39 -28
  127. pyedb-0.66.0/src/pyedb/generic/design_types.py +330 -0
  128. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/generic/filesystem.py +33 -9
  129. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/generic/general_methods.py +48 -160
  130. pyedb-0.66.0/src/pyedb/generic/grpc_warnings.py +27 -0
  131. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/generic/plot.py +30 -25
  132. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/generic/process.py +144 -113
  133. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/generic/settings.py +80 -20
  134. pyedb-0.66.0/src/pyedb/grpc/__init__.py +21 -0
  135. pyedb-0.66.0/src/pyedb/grpc/database/__init__.py +21 -0
  136. pyedb-0.66.0/src/pyedb/grpc/database/_typing.py +21 -0
  137. pyedb-0.66.0/src/pyedb/grpc/database/components.py +2348 -0
  138. pyedb-0.66.0/src/pyedb/grpc/database/definition/__init__.py +21 -0
  139. pyedb-0.66.0/src/pyedb/grpc/database/definition/component_def.py +314 -0
  140. pyedb-0.21.0/src/pyedb/ipc2581/bom/refdes.py → pyedb-0.66.0/src/pyedb/grpc/database/definition/component_model.py +14 -13
  141. pyedb-0.66.0/src/pyedb/grpc/database/definition/component_pin.py +61 -0
  142. pyedb-0.66.0/src/pyedb/grpc/database/definition/materials.py +1243 -0
  143. pyedb-0.21.0/src/pyedb/dotnet/edb_core/cell/terminal/edge_terminal.py → pyedb-0.66.0/src/pyedb/grpc/database/definition/n_port_component_model.py +20 -21
  144. pyedb-0.66.0/src/pyedb/grpc/database/definition/package_def.py +271 -0
  145. pyedb-0.66.0/src/pyedb/grpc/database/definition/padstack_def.py +935 -0
  146. pyedb-0.66.0/src/pyedb/grpc/database/definitions.py +108 -0
  147. pyedb-0.66.0/src/pyedb/grpc/database/general.py +43 -0
  148. pyedb-0.66.0/src/pyedb/grpc/database/geometry/__init__.py +21 -0
  149. pyedb-0.66.0/src/pyedb/grpc/database/geometry/arc_data.py +162 -0
  150. pyedb-0.66.0/src/pyedb/grpc/database/geometry/point_3d_data.py +80 -0
  151. pyedb-0.21.0/src/pyedb/dotnet/edb_core/cell/hierarchy/spice_model.py → pyedb-0.66.0/src/pyedb/grpc/database/geometry/point_data.py +6 -10
  152. pyedb-0.66.0/src/pyedb/grpc/database/geometry/polygon_data.py +268 -0
  153. pyedb-0.66.0/src/pyedb/grpc/database/hfss.py +1302 -0
  154. pyedb-0.66.0/src/pyedb/grpc/database/hierarchy/__init__.py +21 -0
  155. pyedb-0.66.0/src/pyedb/grpc/database/hierarchy/component.py +1456 -0
  156. pyedb-0.66.0/src/pyedb/grpc/database/hierarchy/model.py +31 -0
  157. pyedb-0.21.0/src/pyedb/ipc2581/content/layer_ref.py → pyedb-0.66.0/src/pyedb/grpc/database/hierarchy/netlist_model.py +6 -8
  158. pyedb-0.66.0/src/pyedb/grpc/database/hierarchy/pin_pair_model.py +129 -0
  159. pyedb-0.66.0/src/pyedb/grpc/database/hierarchy/pingroup.py +334 -0
  160. pyedb-0.66.0/src/pyedb/grpc/database/hierarchy/s_parameter_model.py +33 -0
  161. pyedb-0.66.0/src/pyedb/grpc/database/hierarchy/spice_model.py +52 -0
  162. pyedb-0.66.0/src/pyedb/grpc/database/layers/__init__.py +21 -0
  163. pyedb-0.66.0/src/pyedb/grpc/database/layers/layer.py +142 -0
  164. pyedb-0.66.0/src/pyedb/grpc/database/layers/stackup_layer.py +877 -0
  165. pyedb-0.66.0/src/pyedb/grpc/database/layout/__init__.py +21 -0
  166. pyedb-0.66.0/src/pyedb/grpc/database/layout/cell.py +30 -0
  167. pyedb-0.66.0/src/pyedb/grpc/database/layout/layout.py +340 -0
  168. pyedb-0.66.0/src/pyedb/grpc/database/layout/voltage_regulator.py +154 -0
  169. pyedb-0.66.0/src/pyedb/grpc/database/layout_validation.py +395 -0
  170. pyedb-0.66.0/src/pyedb/grpc/database/modeler.py +1779 -0
  171. pyedb-0.66.0/src/pyedb/grpc/database/net/__init__.py +21 -0
  172. pyedb-0.66.0/src/pyedb/grpc/database/net/differential_pair.py +146 -0
  173. pyedb-0.66.0/src/pyedb/grpc/database/net/extended_net.py +388 -0
  174. pyedb-0.66.0/src/pyedb/grpc/database/net/net.py +318 -0
  175. pyedb-0.66.0/src/pyedb/grpc/database/net/net_class.py +110 -0
  176. pyedb-0.66.0/src/pyedb/grpc/database/nets.py +928 -0
  177. pyedb-0.66.0/src/pyedb/grpc/database/padstacks.py +2092 -0
  178. pyedb-0.66.0/src/pyedb/grpc/database/ports/__init__.py +21 -0
  179. pyedb-0.66.0/src/pyedb/grpc/database/ports/ports.py +405 -0
  180. pyedb-0.66.0/src/pyedb/grpc/database/primitive/__init__.py +25 -0
  181. pyedb-0.66.0/src/pyedb/grpc/database/primitive/bondwire.py +258 -0
  182. pyedb-0.66.0/src/pyedb/grpc/database/primitive/circle.py +113 -0
  183. pyedb-0.66.0/src/pyedb/grpc/database/primitive/padstack_instance.py +1578 -0
  184. pyedb-0.66.0/src/pyedb/grpc/database/primitive/path.py +490 -0
  185. pyedb-0.66.0/src/pyedb/grpc/database/primitive/polygon.py +385 -0
  186. pyedb-0.66.0/src/pyedb/grpc/database/primitive/primitive.py +993 -0
  187. pyedb-0.66.0/src/pyedb/grpc/database/primitive/rectangle.py +389 -0
  188. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/__init__.py +21 -0
  189. pyedb-0.21.0/src/pyedb/dotnet/edb_core/cell/hierarchy/s_parameter_model.py → pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/adaptive_frequency.py +9 -10
  190. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/hfss_advanced_meshing_settings.py +32 -0
  191. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/hfss_advanced_settings.py +59 -0
  192. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/hfss_dcr_settings.py +35 -0
  193. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/hfss_general_settings.py +59 -0
  194. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/hfss_settings_options.py +74 -0
  195. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/hfss_simulation_settings.py +118 -0
  196. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py +492 -0
  197. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/hfss_solver_settings.py +34 -0
  198. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/mesh_operation.py +34 -0
  199. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/raptor_x_advanced_settings.py +34 -0
  200. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/raptor_x_general_settings.py +33 -0
  201. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/raptor_x_simulation_settings.py +64 -0
  202. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/raptor_x_simulation_setup.py +125 -0
  203. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/siwave_cpa_simulation_setup.py +985 -0
  204. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/siwave_dcir_simulation_setup.py +34 -0
  205. pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py +178 -0
  206. pyedb-0.21.0/src/pyedb/dotnet/edb_core/geometry/point_data.py → pyedb-0.66.0/src/pyedb/grpc/database/simulation_setup/sweep_data.py +17 -13
  207. pyedb-0.66.0/src/pyedb/grpc/database/siwave.py +1057 -0
  208. pyedb-0.66.0/src/pyedb/grpc/database/source_excitations.py +3074 -0
  209. pyedb-0.66.0/src/pyedb/grpc/database/stackup.py +3015 -0
  210. pyedb-0.66.0/src/pyedb/grpc/database/terminal/__init__.py +21 -0
  211. pyedb-0.66.0/src/pyedb/grpc/database/terminal/bundle_terminal.py +270 -0
  212. pyedb-0.66.0/src/pyedb/grpc/database/terminal/edge_terminal.py +324 -0
  213. pyedb-0.66.0/src/pyedb/grpc/database/terminal/padstack_instance_terminal.py +371 -0
  214. pyedb-0.66.0/src/pyedb/grpc/database/terminal/pingroup_terminal.py +300 -0
  215. pyedb-0.66.0/src/pyedb/grpc/database/terminal/point_terminal.py +217 -0
  216. pyedb-0.66.0/src/pyedb/grpc/database/terminal/terminal.py +527 -0
  217. pyedb-0.66.0/src/pyedb/grpc/database/utility/__init__.py +25 -0
  218. pyedb-0.66.0/src/pyedb/grpc/database/utility/constants.py +25 -0
  219. pyedb-0.66.0/src/pyedb/grpc/database/utility/heat_sink.py +123 -0
  220. pyedb-0.66.0/src/pyedb/grpc/database/utility/hfss_extent_info.py +411 -0
  221. pyedb-0.66.0/src/pyedb/grpc/database/utility/layer_map.py +129 -0
  222. pyedb-0.66.0/src/pyedb/grpc/database/utility/layout_statistics.py +277 -0
  223. pyedb-0.21.0/src/pyedb/dotnet/edb_core/cell/connectable.py → pyedb-0.66.0/src/pyedb/grpc/database/utility/rlc.py +40 -24
  224. pyedb-0.66.0/src/pyedb/grpc/database/utility/sources.py +388 -0
  225. pyedb-0.66.0/src/pyedb/grpc/database/utility/sweep_data_distribution.py +83 -0
  226. pyedb-0.66.0/src/pyedb/grpc/database/utility/value.py +111 -0
  227. pyedb-0.21.0/src/pyedb/dotnet/edb_core/edb_data/control_file.py → pyedb-0.66.0/src/pyedb/grpc/database/utility/xml_control_file.py +37 -26
  228. pyedb-0.66.0/src/pyedb/grpc/edb.py +3266 -0
  229. pyedb-0.66.0/src/pyedb/grpc/edb_init.py +516 -0
  230. pyedb-0.66.0/src/pyedb/grpc/rpc_session.py +194 -0
  231. pyedb-0.66.0/src/pyedb/libraries/common.py +367 -0
  232. pyedb-0.66.0/src/pyedb/libraries/rf_libraries/base_functions.py +1394 -0
  233. pyedb-0.66.0/src/pyedb/libraries/rf_libraries/planar_antennas.py +610 -0
  234. pyedb-0.66.0/src/pyedb/misc/__init__.py +21 -0
  235. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/aedtlib_personalib_install.py +3 -3
  236. pyedb-0.66.0/src/pyedb/misc/decorators.py +83 -0
  237. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/downloads.py +21 -5
  238. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/misc.py +6 -3
  239. pyedb-0.66.0/src/pyedb/misc/siw_feature_config/__init__.py +21 -0
  240. pyedb-0.66.0/src/pyedb/misc/siw_feature_config/emc/__init__.py +21 -0
  241. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/siw_feature_config/emc/component_tags.py +22 -0
  242. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/siw_feature_config/emc/net_tags.py +22 -0
  243. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/siw_feature_config/emc/tag_library.py +22 -0
  244. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/siw_feature_config/emc/xml_generic.py +22 -0
  245. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/siw_feature_config/emc_rule_checker_settings.py +4 -3
  246. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/fd_xtalk_scan_config.py +1 -1
  247. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/impedance_scan_config.py +1 -1
  248. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/net.py +1 -1
  249. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/pins.py +1 -1
  250. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py +1 -2
  251. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py +1 -1
  252. pyedb-0.66.0/src/pyedb/misc/utilities.py +99 -0
  253. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/modeler/geometry_operators.py +102 -12
  254. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/siwave.py +184 -13
  255. pyedb-0.66.0/src/pyedb/siwave_core/__init__.py +21 -0
  256. pyedb-0.66.0/src/pyedb/siwave_core/cpa/__init__.py +21 -0
  257. pyedb-0.66.0/src/pyedb/siwave_core/cpa/simulation_setup_data_model.py +154 -0
  258. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/siwave_core/icepak.py +1 -1
  259. pyedb-0.66.0/src/pyedb/siwave_core/product_properties.py +221 -0
  260. pyedb-0.21.0/src/pyedb/ipc2581/content/color.py → pyedb-0.66.0/src/pyedb/workflow.py +25 -31
  261. pyedb-0.66.0/src/pyedb/workflows/__init__.py +21 -0
  262. pyedb-0.66.0/src/pyedb/workflows/drc/__init__.py +21 -0
  263. pyedb-0.66.0/src/pyedb/workflows/drc/drc.py +816 -0
  264. pyedb-0.66.0/src/pyedb/workflows/sipi/hfss_auto_configuration.py +711 -0
  265. pyedb-0.66.0/src/pyedb/workflows/utilities/__init__.py +21 -0
  266. pyedb-0.66.0/src/pyedb/workflows/utilities/cutout.py +1428 -0
  267. pyedb-0.66.0/src/pyedb/workflows/utilities/hfss_log_parser.py +446 -0
  268. pyedb-0.66.0/src/pyedb/workflows/utilities/siwave_log_parser.py +511 -0
  269. pyedb-0.21.0/pyproject.toml +0 -140
  270. pyedb-0.21.0/src/pyedb/configuration/__init__.py +0 -0
  271. pyedb-0.21.0/src/pyedb/configuration/cfg_boundaries.py +0 -125
  272. pyedb-0.21.0/src/pyedb/configuration/cfg_components.py +0 -175
  273. pyedb-0.21.0/src/pyedb/configuration/cfg_operations.py +0 -61
  274. pyedb-0.21.0/src/pyedb/configuration/cfg_padstacks.py +0 -129
  275. pyedb-0.21.0/src/pyedb/configuration/cfg_ports_sources.py +0 -371
  276. pyedb-0.21.0/src/pyedb/configuration/cfg_s_parameter_models.py +0 -60
  277. pyedb-0.21.0/src/pyedb/configuration/cfg_setup.py +0 -239
  278. pyedb-0.21.0/src/pyedb/configuration/cfg_stackup.py +0 -162
  279. pyedb-0.21.0/src/pyedb/configuration/configuration.py +0 -332
  280. pyedb-0.21.0/src/pyedb/dotnet/__init__.py +0 -0
  281. pyedb-0.21.0/src/pyedb/dotnet/application/__init__.py +0 -0
  282. pyedb-0.21.0/src/pyedb/dotnet/clr_module.py +0 -103
  283. pyedb-0.21.0/src/pyedb/dotnet/edb_core/__init__.py +0 -1
  284. pyedb-0.21.0/src/pyedb/dotnet/edb_core/cell/__init__.py +0 -0
  285. pyedb-0.21.0/src/pyedb/dotnet/edb_core/cell/hierarchy/__init__.py +0 -0
  286. pyedb-0.21.0/src/pyedb/dotnet/edb_core/cell/terminal/__init__.py +0 -0
  287. pyedb-0.21.0/src/pyedb/dotnet/edb_core/definition/__init__.py +0 -0
  288. pyedb-0.21.0/src/pyedb/dotnet/edb_core/dotnet/__init__.py +0 -0
  289. pyedb-0.21.0/src/pyedb/dotnet/edb_core/edb_data/__init__.py +0 -0
  290. pyedb-0.21.0/src/pyedb/dotnet/edb_core/edb_data/hfss_pi_simulation_setup_data.py +0 -0
  291. pyedb-0.21.0/src/pyedb/dotnet/edb_core/edb_data/primitives_data.py +0 -1311
  292. pyedb-0.21.0/src/pyedb/dotnet/edb_core/geometry/__init__.py +0 -0
  293. pyedb-0.21.0/src/pyedb/dotnet/edb_core/geometry/polygon_data.py +0 -74
  294. pyedb-0.21.0/src/pyedb/dotnet/edb_core/sim_setup_data/__init__.py +0 -3
  295. pyedb-0.21.0/src/pyedb/dotnet/edb_core/sim_setup_data/data/__init__.py +0 -3
  296. pyedb-0.21.0/src/pyedb/dotnet/edb_core/sim_setup_data/io/__init__.py +0 -0
  297. pyedb-0.21.0/src/pyedb/dotnet/edb_core/utilities/__init__.py +0 -3
  298. pyedb-0.21.0/src/pyedb/exceptions.py +0 -6
  299. pyedb-0.21.0/src/pyedb/generic/__init__.py +0 -0
  300. pyedb-0.21.0/src/pyedb/generic/design_types.py +0 -137
  301. pyedb-0.21.0/src/pyedb/ipc2581/__init__.py +0 -0
  302. pyedb-0.21.0/src/pyedb/ipc2581/bom/__init__.py +0 -0
  303. pyedb-0.21.0/src/pyedb/ipc2581/bom/bom.py +0 -43
  304. pyedb-0.21.0/src/pyedb/ipc2581/bom/bom_item.py +0 -54
  305. pyedb-0.21.0/src/pyedb/ipc2581/bom/characteristics.py +0 -59
  306. pyedb-0.21.0/src/pyedb/ipc2581/content/__init__.py +0 -0
  307. pyedb-0.21.0/src/pyedb/ipc2581/content/content.py +0 -77
  308. pyedb-0.21.0/src/pyedb/ipc2581/content/dictionary_color.py +0 -51
  309. pyedb-0.21.0/src/pyedb/ipc2581/content/dictionary_fill.py +0 -50
  310. pyedb-0.21.0/src/pyedb/ipc2581/content/dictionary_line.py +0 -52
  311. pyedb-0.21.0/src/pyedb/ipc2581/content/entry_color.py +0 -35
  312. pyedb-0.21.0/src/pyedb/ipc2581/content/entry_line.py +0 -36
  313. pyedb-0.21.0/src/pyedb/ipc2581/content/fill.py +0 -37
  314. pyedb-0.21.0/src/pyedb/ipc2581/content/standard_geometries_dictionary.py +0 -94
  315. pyedb-0.21.0/src/pyedb/ipc2581/ecad/__init__.py +0 -0
  316. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/__init__.py +0 -0
  317. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/assembly_drawing.py +0 -48
  318. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/cad_data.py +0 -59
  319. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/component.py +0 -63
  320. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/drill.py +0 -52
  321. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/feature.py +0 -76
  322. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/layer.py +0 -63
  323. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/layer_feature.py +0 -167
  324. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/logical_net.py +0 -54
  325. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/outline.py +0 -47
  326. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/package.py +0 -123
  327. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/padstack_def.py +0 -60
  328. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/padstack_hole_def.py +0 -46
  329. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/padstack_instance.py +0 -84
  330. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/padstack_pad_def.py +0 -48
  331. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/path.py +0 -109
  332. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/phy_net.py +0 -102
  333. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/pin.py +0 -53
  334. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/polygon.py +0 -186
  335. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/profile.py +0 -62
  336. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/stackup.py +0 -53
  337. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/stackup_group.py +0 -64
  338. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/stackup_layer.py +0 -43
  339. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_data/step.py +0 -288
  340. pyedb-0.21.0/src/pyedb/ipc2581/ecad/cad_header.py +0 -55
  341. pyedb-0.21.0/src/pyedb/ipc2581/ecad/ecad.py +0 -41
  342. pyedb-0.21.0/src/pyedb/ipc2581/ecad/spec.py +0 -68
  343. pyedb-0.21.0/src/pyedb/ipc2581/history_record.py +0 -59
  344. pyedb-0.21.0/src/pyedb/ipc2581/ipc2581.py +0 -402
  345. pyedb-0.21.0/src/pyedb/ipc2581/logistic_header.py +0 -47
  346. pyedb-0.21.0/src/pyedb/misc/__init__.py +0 -0
  347. pyedb-0.21.0/src/pyedb/misc/siw_feature_config/__init__.py +0 -0
  348. pyedb-0.21.0/src/pyedb/misc/siw_feature_config/emc/__init__.py +0 -0
  349. pyedb-0.21.0/src/pyedb/misc/utilities.py +0 -27
  350. pyedb-0.21.0/src/pyedb/workflow.py +0 -32
  351. {pyedb-0.21.0 → pyedb-0.66.0}/src/pyedb/misc/pyedb.runtimeconfig.json +0 -0
@@ -1,13 +1,13 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 ANSYS, Inc. All rights reserved.
3
+ Copyright (c) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
4
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:
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9
+ of the Software, and to permit persons to whom the Software is furnished to do
10
+ so, subject to the following conditions:
11
11
 
12
12
  The above copyright notice and this permission notice shall be included in all
13
13
  copies or substantial portions of the Software.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pyedb
3
- Version: 0.21.0
3
+ Version: 0.66.0
4
4
  Summary: Higher-Level Pythonic Ansys Electronics Data Base
5
5
  Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
6
6
  Maintainer-email: PyEDB developers <simon.vandenbrouck@ansys.com>
@@ -15,45 +15,57 @@ Classifier: Programming Language :: Python :: 3.8
15
15
  Classifier: Programming Language :: Python :: 3.9
16
16
  Classifier: Programming Language :: Python :: 3.10
17
17
  Classifier: Programming Language :: Python :: 3.11
18
- Requires-Dist: cffi>=1.16.0,<1.17; platform_system=='Linux'
18
+ License-File: LICENSE
19
+ Requires-Dist: cffi>=1.16.0,<2.1; platform_system=='Linux'
19
20
  Requires-Dist: pywin32 >= 303;platform_system=='Windows'
20
- Requires-Dist: ansys-pythonnet >= 3.1.0rc3
21
+ Requires-Dist: ansys-pythonnet >= 3.1.0rc4
21
22
  Requires-Dist: dotnetcore2 ==3.1.23;platform_system=='Linux'
22
- Requires-Dist: numpy>=1.20.0,<2
23
- Requires-Dist: pandas>=1.1.0,<2.3
24
- Requires-Dist: pydantic>=2.6.4,<2.9
23
+ Requires-Dist: numpy>=1.20.0,<3
24
+ Requires-Dist: pandas>=1.1.0,<2.4
25
+ Requires-Dist: pydantic>=2.6.4,<2.13
25
26
  Requires-Dist: Rtree >= 1.2.0
26
27
  Requires-Dist: toml == 0.10.2
27
- Requires-Dist: ansys-sphinx-theme>=0.10.0,<0.17 ; extra == "doc"
28
- Requires-Dist: imageio>=2.30.0,<2.35 ; extra == "doc"
29
- Requires-Dist: ipython>=8.13.0,<8.27 ; extra == "doc"
30
- Requires-Dist: jupyterlab>=4.0.0,<4.3 ; extra == "doc"
31
- Requires-Dist: jupytext>=1.16.0,<1.17 ; extra == "doc"
32
- Requires-Dist: matplotlib>=3.5.0,<3.10 ; extra == "doc"
28
+ Requires-Dist: shapely
29
+ Requires-Dist: scikit-rf
30
+ Requires-Dist: ansys-edb-core>=0.2.0,<0.2.3
31
+ Requires-Dist: psutil
32
+ Requires-Dist: defusedxml>=0.7,<8.0
33
+ Requires-Dist: matplotlib>=3.5.0,<3.11
34
+ Requires-Dist: aiohttp>=3.8
35
+ Requires-Dist: python-socketio>=5.10
36
+ Requires-Dist: requests>=2.32,<3.0
37
+ Requires-Dist: ezdxf>=1.4.2
38
+ Requires-Dist: scipy>=1.13, <2.0
39
+ Requires-Dist: ansys-sphinx-theme[autoapi]>=1.0.0,<1.7 ; extra == "doc"
40
+ Requires-Dist: imageio>=2.30.0,<2.38 ; extra == "doc"
41
+ Requires-Dist: ipython>=8.13.0,<8.32 ; extra == "doc"
42
+ Requires-Dist: jupyterlab>=4.0.0,<4.6 ; extra == "doc"
43
+ Requires-Dist: jupytext>=1.16.0,<1.19 ; extra == "doc"
44
+ Requires-Dist: matplotlib>=3.5.0,<3.11 ; extra == "doc"
33
45
  Requires-Dist: nbsphinx>=0.9.0,<0.10 ; extra == "doc"
34
46
  Requires-Dist: nbconvert < 7.17 ; extra == "doc"
35
- Requires-Dist: numpydoc>=1.5.0,<1.8 ; extra == "doc"
36
- Requires-Dist: pypandoc>=1.10.0,<1.14 ; extra == "doc"
47
+ Requires-Dist: numpydoc==1.5.0 ; extra == "doc"
48
+ Requires-Dist: pypandoc>=1.10.0,<1.17 ; extra == "doc"
37
49
  Requires-Dist: recommonmark ; extra == "doc"
38
- Requires-Dist: Sphinx>=7.1.0,<7.4 ; extra == "doc"
39
- Requires-Dist: sphinx-autobuild==2024.2.4 ; extra == "doc" and ( python_version == '3.8')
40
- Requires-Dist: sphinx-autobuild==2024.2.4 ; extra == "doc" and ( python_version > '3.8')
50
+ Requires-Dist: Sphinx>=7.1.0,<8.3 ; extra == "doc"
51
+ Requires-Dist: sphinx-autobuild==2024.10.3 ; extra == "doc"
41
52
  Requires-Dist: sphinx-copybutton>=0.5.0,<0.6 ; extra == "doc"
42
- Requires-Dist: sphinx-gallery>=0.14.0,<0.17 ; extra == "doc"
53
+ Requires-Dist: sphinx-gallery>=0.14.0,<0.20 ; extra == "doc"
43
54
  Requires-Dist: sphinx_design>=0.4.0,<0.7 ; extra == "doc"
44
- Requires-Dist: matplotlib>=3.5.0,<3.10 ; extra == "full"
45
- Requires-Dist: matplotlib>=3.5.0,<3.10 ; extra == "tests"
46
- Requires-Dist: mock>=5.1.0,<5.2 ; extra == "tests"
47
- Requires-Dist: pytest>=7.4.0,<8.3 ; extra == "tests"
48
- Requires-Dist: pytest-cov>=4.0.0,<5.1 ; extra == "tests"
55
+ Requires-Dist: shapely ; extra == "doc"
56
+ Requires-Dist: matplotlib>=3.5.0,<3.11 ; extra == "tests"
57
+ Requires-Dist: mock>=5.1.0,<5.3 ; extra == "tests"
58
+ Requires-Dist: pytest>=7.4.0,<8.5 ; extra == "tests"
59
+ Requires-Dist: pytest-cov>=4.0.0,<7.1 ; extra == "tests"
49
60
  Requires-Dist: pytest-xdist>=3.5.0,<3.7 ; extra == "tests"
61
+ Requires-Dist: scikit-rf ; extra == "tests"
62
+ Requires-Dist: shapely ; extra == "tests"
50
63
  Project-URL: Bugs, https://github.com/ansys/pyedb/issues
51
64
  Project-URL: Discussions, https://github.com/ansys/pyedb/discussions
52
65
  Project-URL: Documentation, https://edb.docs.pyansys.com
53
66
  Project-URL: Releases, https://github.com/ansys/pyedb/releases
54
67
  Project-URL: Source, https://github.com/ansys/pyedb
55
68
  Provides-Extra: doc
56
- Provides-Extra: full
57
69
  Provides-Extra: tests
58
70
 
59
71
  <!-- -->
@@ -68,10 +80,11 @@ Provides-Extra: tests
68
80
  [![PyAnsys](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)](https://docs.pyansys.com/)
69
81
  [![PythonVersion](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
70
82
  [![MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
83
+ [![DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ansys/pyedb)
71
84
 
72
85
  ## What is PyEDB?
73
86
 
74
- PyEDB is Python client library for processing complex and large layout designs in the
87
+ PyEDB is a Python client library for processing complex and large layout designs in the
75
88
  Ansys Electronics Database (EDB) format, which stores information describing designs for
76
89
  [Ansys Electronics Desktop](https://www.ansys.com/products/electronics) (AEDT).
77
90
 
@@ -97,7 +110,7 @@ HFSS 3D Layout, Icepak, Maxwell, Q3D, and SIwave.
97
110
 
98
111
  EDB provides a proprietary database file format (AEDB) for efficient and fast layout design
99
112
  handling and processing for building ready-to-solve projects. EDB addresses signal integrity
100
- (SI), power integrity (PI-DC), and electro-thermal work flows. You can import an AEDB file
113
+ (SI), power integrity (PI-DC), and electro-thermal workflows. You can import an AEDB file
101
114
  into AEDT to modify the layout, assign materials, and define ports, simulations, and constraints.
102
115
  You can then launch any of the Ansys electromagnetic simulators.
103
116
 
@@ -107,7 +120,7 @@ memory, it provides the fastest and most efficient way to handle a large and com
107
120
 
108
121
  You can also parse an AEDB file from a command line in batch in an Ansys electromagnetic simulator
109
122
  like HFSS or SIwave. Thus, you can deploy completely non-graphical flows, from layout
110
- translation through simulatiom results.
123
+ translation through simulation results.
111
124
 
112
125
  Additionally, you can use PyAEDT to import an AEDB file into AEDT to view a project,
113
126
  combine 3D designs, or perform simulation postprocessing. EDB also supports 3D component models.
@@ -118,15 +131,15 @@ Documentation for the latest stable release of PyEDB is hosted at
118
131
  [PyEDB documentation](https://edb.docs.pyansys.com/version/stable/index.html).
119
132
  The documentation has five sections:
120
133
 
121
- - [Getting started](https://edb.docs.pyansys.com/version/version/stable/getting_started/index.html): Describes
134
+ - [Getting started](https://edb.docs.pyansys.com/version/stable/getting_started/index.html): Describes
122
135
  how to install PyEDB in user mode.
123
- - [User guide](https://edb.docs.pyansys.com/version/version/stable/user_guide/index.html): Describes how to
136
+ - [User guide](https://edb.docs.pyansys.com/version/stable/user_guide/index.html#user-guide): Describes how to
124
137
  use PyEDB.
125
- - [API reference](https://edb.docs.pyansys.com/version/version/stable/api/index.html): Provides API member descriptions
138
+ - [API reference](https://edb.docs.pyansys.com/version/stable/api/index.html): Provides API member descriptions
126
139
  and usage examples.
127
- - [Examples](https://edb.docs.pyansys.com/version/version/stable/examples/index.html): Provides examples showing
140
+ - [Examples](https://examples.aedt.docs.pyansys.com/version/dev/examples/high_frequency/layout/index.html): Provides examples showing
128
141
  end-to-end workflows for using PyEDB.
129
- - [Contribute](https://edb.docs.pyansys.com/version/version/stable/contribute.html): Describes how to install
142
+ - [Contribute](https://edb.docs.pyansys.com/version/stable/contributing.html): Describes how to install
130
143
  PyEDB in developer mode and how to contribute to this PyAnsys library.
131
144
 
132
145
  In the upper right corner of the documentation's title bar, there is an option
@@ -10,10 +10,11 @@
10
10
  [![PyAnsys](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)](https://docs.pyansys.com/)
11
11
  [![PythonVersion](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
12
12
  [![MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
13
+ [![DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ansys/pyedb)
13
14
 
14
15
  ## What is PyEDB?
15
16
 
16
- PyEDB is Python client library for processing complex and large layout designs in the
17
+ PyEDB is a Python client library for processing complex and large layout designs in the
17
18
  Ansys Electronics Database (EDB) format, which stores information describing designs for
18
19
  [Ansys Electronics Desktop](https://www.ansys.com/products/electronics) (AEDT).
19
20
 
@@ -39,7 +40,7 @@ HFSS 3D Layout, Icepak, Maxwell, Q3D, and SIwave.
39
40
 
40
41
  EDB provides a proprietary database file format (AEDB) for efficient and fast layout design
41
42
  handling and processing for building ready-to-solve projects. EDB addresses signal integrity
42
- (SI), power integrity (PI-DC), and electro-thermal work flows. You can import an AEDB file
43
+ (SI), power integrity (PI-DC), and electro-thermal workflows. You can import an AEDB file
43
44
  into AEDT to modify the layout, assign materials, and define ports, simulations, and constraints.
44
45
  You can then launch any of the Ansys electromagnetic simulators.
45
46
 
@@ -49,7 +50,7 @@ memory, it provides the fastest and most efficient way to handle a large and com
49
50
 
50
51
  You can also parse an AEDB file from a command line in batch in an Ansys electromagnetic simulator
51
52
  like HFSS or SIwave. Thus, you can deploy completely non-graphical flows, from layout
52
- translation through simulatiom results.
53
+ translation through simulation results.
53
54
 
54
55
  Additionally, you can use PyAEDT to import an AEDB file into AEDT to view a project,
55
56
  combine 3D designs, or perform simulation postprocessing. EDB also supports 3D component models.
@@ -60,15 +61,15 @@ Documentation for the latest stable release of PyEDB is hosted at
60
61
  [PyEDB documentation](https://edb.docs.pyansys.com/version/stable/index.html).
61
62
  The documentation has five sections:
62
63
 
63
- - [Getting started](https://edb.docs.pyansys.com/version/version/stable/getting_started/index.html): Describes
64
+ - [Getting started](https://edb.docs.pyansys.com/version/stable/getting_started/index.html): Describes
64
65
  how to install PyEDB in user mode.
65
- - [User guide](https://edb.docs.pyansys.com/version/version/stable/user_guide/index.html): Describes how to
66
+ - [User guide](https://edb.docs.pyansys.com/version/stable/user_guide/index.html#user-guide): Describes how to
66
67
  use PyEDB.
67
- - [API reference](https://edb.docs.pyansys.com/version/version/stable/api/index.html): Provides API member descriptions
68
+ - [API reference](https://edb.docs.pyansys.com/version/stable/api/index.html): Provides API member descriptions
68
69
  and usage examples.
69
- - [Examples](https://edb.docs.pyansys.com/version/version/stable/examples/index.html): Provides examples showing
70
+ - [Examples](https://examples.aedt.docs.pyansys.com/version/dev/examples/high_frequency/layout/index.html): Provides examples showing
70
71
  end-to-end workflows for using PyEDB.
71
- - [Contribute](https://edb.docs.pyansys.com/version/version/stable/contribute.html): Describes how to install
72
+ - [Contribute](https://edb.docs.pyansys.com/version/stable/contributing.html): Describes how to install
72
73
  PyEDB in developer mode and how to contribute to this PyAnsys library.
73
74
 
74
75
  In the upper right corner of the documentation's title bar, there is an option
@@ -0,0 +1,314 @@
1
+ [build-system]
2
+ requires = ["flit_core >=3.2,<3.13"] # THIS SHOULD BE REVERTED TO '["flit_core >=3.2,<4"]'
3
+ build-backend = "flit_core.buildapi"
4
+
5
+
6
+ [project]
7
+ name = "pyedb"
8
+ dynamic = ["version"]
9
+ description = "Higher-Level Pythonic Ansys Electronics Data Base"
10
+ readme = "README.md"
11
+ requires-python = ">=3.8,<4"
12
+ license = {file = "LICENSE"}
13
+ authors = [{name = "ANSYS, Inc.", email = "pyansys.core@ansys.com"}]
14
+ maintainers = [{name = "PyEDB developers", email = "simon.vandenbrouck@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.8",
22
+ "Programming Language :: Python :: 3.9",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ ]
26
+
27
+ dependencies = [
28
+ "cffi>=1.16.0,<2.1; platform_system=='Linux'",
29
+ "pywin32 >= 303;platform_system=='Windows'",
30
+ "ansys-pythonnet >= 3.1.0rc4",
31
+ "dotnetcore2 ==3.1.23;platform_system=='Linux'",
32
+ "numpy>=1.20.0,<3",
33
+ "pandas>=1.1.0,<2.4",
34
+ "pydantic>=2.6.4,<2.13",
35
+ "Rtree >= 1.2.0",
36
+ "toml == 0.10.2",
37
+ "shapely",
38
+ "scikit-rf",
39
+ "ansys-edb-core>=0.2.0,<0.2.3",
40
+ "psutil",
41
+ "defusedxml>=0.7,<8.0",
42
+ "matplotlib>=3.5.0,<3.11",
43
+ "aiohttp>=3.8",
44
+ "python-socketio>=5.10",
45
+ "requests>=2.32,<3.0",
46
+ "ezdxf>=1.4.2",
47
+ "scipy>=1.13, <2.0",
48
+ ]
49
+
50
+ [project.optional-dependencies]
51
+ tests = [
52
+ "matplotlib>=3.5.0,<3.11",
53
+ "mock>=5.1.0,<5.3",
54
+ "pytest>=7.4.0,<8.5",
55
+ "pytest-cov>=4.0.0,<7.1",
56
+ "pytest-xdist>=3.5.0,<3.7",
57
+ "scikit-rf",
58
+ "shapely"
59
+ ]
60
+ doc = [
61
+ "ansys-sphinx-theme[autoapi]>=1.0.0,<1.7",
62
+ "imageio>=2.30.0,<2.38",
63
+ "ipython>=8.13.0,<8.32",
64
+ "jupyterlab>=4.0.0,<4.6",
65
+ "jupytext>=1.16.0,<1.19",
66
+ "matplotlib>=3.5.0,<3.11",
67
+ "nbsphinx>=0.9.0,<0.10",
68
+ "nbconvert < 7.17",
69
+ "numpydoc==1.5.0",
70
+ "pypandoc>=1.10.0,<1.17",
71
+ # NOTE: Remove recommonmark once examples are reworked.
72
+ "recommonmark",
73
+ "Sphinx>=7.1.0,<8.3",
74
+ "sphinx-autobuild==2024.10.3",
75
+ "sphinx-copybutton>=0.5.0,<0.6",
76
+ "sphinx-gallery>=0.14.0,<0.20",
77
+ "sphinx_design>=0.4.0,<0.7",
78
+ "shapely",
79
+ ]
80
+
81
+
82
+ [tool.flit.module]
83
+ name = "pyedb"
84
+
85
+ [project.urls]
86
+ Bugs = "https://github.com/ansys/pyedb/issues"
87
+ Documentation = "https://edb.docs.pyansys.com"
88
+ Source = "https://github.com/ansys/pyedb"
89
+ Discussions = "https://github.com/ansys/pyedb/discussions"
90
+ Releases = "https://github.com/ansys/pyedb/releases"
91
+
92
+ [tool.ruff]
93
+ line-length = 120
94
+ fix = true
95
+
96
+ [tool.ruff.format]
97
+ quote-style = "double"
98
+ indent-style = "space"
99
+ docstring-code-format = true
100
+
101
+ [tool.ruff.lint]
102
+ select = [
103
+ "D", # pydocstyle, see https://docs.astral.sh/ruff/rules/#pydocstyle-d
104
+ "E", # pycodestyle, see https://docs.astral.sh/ruff/rules/#pycodestyle-e-w
105
+ "F", # pyflakes, see https://docs.astral.sh/ruff/rules/#pyflakes-f
106
+ "I", # isort, see https://docs.astral.sh/ruff/rules/#isort-i
107
+ "N", # pep8-naming, see https://docs.astral.sh/ruff/rules/#pep8-naming-n
108
+ "PTH", # flake8-use-pathlib, https://docs.astral.sh/ruff/rules/#flake8-use-pathlib-pth
109
+ "TD", # flake8-todos, https://docs.astral.sh/ruff/rules/#flake8-todos-td
110
+ "W", # pycodestyle, see https://docs.astral.sh/ruff/rules/#pycodestyle-e-w
111
+ ]
112
+ ignore = [
113
+ # "D" - pydocstyle, see https://docs.astral.sh/ruff/rules/#pydocstyle-d
114
+ "D100", # undocumented-public-module
115
+ "D101", # undocumented-public-class
116
+ "D102", # undocumented-public-method
117
+ "D103", # undocumented-public-function
118
+ "D104", # undocumented-public-package
119
+ "D105", # undocumented-magic-method
120
+ "D106", # undocumented-public-nested-class
121
+ "D200", # unnecessary-multiline-docstring
122
+ "D202", # blank-line-after-function
123
+ "D205", # missing-blank-line-after-summary
124
+ "D208", # over-indentation
125
+ "D209", # new-line-after-last-paragraph
126
+ "D210", # surrounding-whitespace
127
+ "D214", # overindented-section
128
+ "D215", # overindented-section-underline
129
+ "D301", # escape-sequence-in-docstring
130
+ "D400", # missing-trailing-period
131
+ "D401", # non-imperative-mood
132
+ "D403", # first-word-uncapitalized
133
+ "D404", # docstring-starts-with-this
134
+ "D405", # non-capitalized-section-name
135
+ "D406", # missing-new-line-after-section-name
136
+ "D407", # missing-dashed-underline-after-section
137
+ "D409", # mismatched-section-underline-length
138
+ "D410", # no-blank-line-after-section
139
+ "D411", # no-blank-line-before-section
140
+ "D412", # blank-lines-between-header-and-content
141
+ "D414", # empty-docstring-section
142
+ "D419", # empty-docstring
143
+
144
+ # "E" - pycodestyle, see https://docs.astral.sh/ruff/rules/#pycodestyle-e-w
145
+ "E402", # module-import-not-at-top-of-file
146
+ "E711", # none-comparison
147
+ "E712", # true-false-comparison
148
+ "E713", # not-in-test
149
+ "E721", # type-comparison
150
+ "E722", # bare-except
151
+ "E731", # lambda-assignment
152
+ "E741", # ambiguous-variable-name
153
+ "E743", # ambiguous-function-name
154
+
155
+ # "F" - pyflakes, see https://docs.astral.sh/ruff/rules/#pyflakes-f
156
+ "F401", # unused-import
157
+ "F523", # string-dot-format-extra-positional-arguments
158
+ "F541", # f-string-missing-placeholders
159
+ "F811", # redefined-while-unused
160
+ "F821", # undefined-name
161
+ "F841", # unused-variable
162
+
163
+ # "N" - pep8-naming, see https://docs.astral.sh/ruff/rules/#pep8-naming-n
164
+ "N801", # invalid-class-name
165
+ "N802", # invalid-function-name
166
+ "N803", # invalid-argument-name
167
+ "N806", # non-lowercase-variable-in-function
168
+ "N812", # lowercase-imported-as-non-lowercase
169
+ "N813", # camelcase-imported-as-lowercase
170
+ "N815", # mixed-case-variable-in-class-scope
171
+ "N816", # mixed-case-variable-in-global-scope
172
+ "N817", # camelcase-imported-as-acronym
173
+ "N818", # error-suffix-on-exception-name
174
+ "N999", # invalid-module-name
175
+
176
+ # "PTH" - flake8-use-pathlib, https://docs.astral.sh/ruff/rules/#flake8-use-pathlib-pth
177
+ "PTH100", # os-path-abspath
178
+ "PTH101", # os-chmod
179
+ "PTH102", # os-mkdir
180
+ "PTH103", # os-makedirs
181
+ "PTH104", # os-rename
182
+ "PTH107", # os-remove
183
+ "PTH108", # os-unlink
184
+ "PTH110", # os-path-exists
185
+ "PTH111", # os-path-expanduser
186
+ "PTH112", # os-path-isdir
187
+ "PTH113", # os-path-isfile
188
+ "PTH116", # os-stat
189
+ "PTH118", # os-path-join
190
+ "PTH119", # os-path-basename
191
+ "PTH120", # os-path-dirname
192
+ "PTH122", # os-path-splitext
193
+ "PTH123", # builtin-open
194
+ "PTH202", # os-path-getsize
195
+
196
+ # "TD" - flake8-todos, https://docs.astral.sh/ruff/rules/#flake8-todos-td
197
+ "TD001", # invalid-todo-tag
198
+ "TD002", # missing-todo-author
199
+ "TD003", # missing-todo-link
200
+ "TD004", # missing-todo-colon
201
+ "TD005", # missing-todo-description
202
+ "TD006", # invalid-todo-capitalization
203
+
204
+ # "W" - pycodestyle, see https://docs.astral.sh/ruff/rules/#pycodestyle-e-w
205
+ "W605" # invalid-escape-sequence
206
+ ]
207
+
208
+ [tool.ruff.lint.pydocstyle]
209
+ # Use Numpy-style docstrings.
210
+ convention = "numpy"
211
+
212
+ [tool.ruff.lint.isort]
213
+ force-sort-within-sections = true
214
+ known-first-party = ["doc", "src", "tests"]
215
+ combine-as-imports = true
216
+
217
+ [tool.ruff.lint.mccabe]
218
+ max-complexity = 10
219
+
220
+ [tool.codespell]
221
+ skip = '*.pyc,*.txt,*.gif,*.png,*.jpg,*.js,*.html,*.doctree,*.ttf,*.woff,*.woff2,*.eot,*.mp4,*.inv,*.pickle,*.ipynb,*.a3dcomp,flycheck*,./.git/*,./.hypothesis/*,*.yml,./doc/build/*,./doc/images/*,./dist/*,*~,.hypothesis*,./doc/source/examples/*,*cover,*.dat,*.mac,*.cdb,*.CDB,build,./factory/*,PKG-INFO,*.mypy_cache/*,./_unused/*,pyproject.toml'
222
+ ignore-words = "doc/styles/config/vocabularies/ANSYS/accept.txt"
223
+ ignore-words-list = "renabled, sie, mot"
224
+ enable-colors = true
225
+
226
+ [tool.coverage.run]
227
+ relative_files = true
228
+ source = ["pyedb"]
229
+
230
+ [tool.coverage.report]
231
+ show_missing = true
232
+
233
+ [tool.pytest.ini_options]
234
+ minversion = "7.1"
235
+ xfail_strict = false
236
+ filterwarnings = [
237
+ "ignore::DeprecationWarning",
238
+ ]
239
+ markers = [
240
+ "legacy: mark test as related to the legacy API.",
241
+ "grpc: mark test as related to the gRPC API.",
242
+ "unit: mark test as an unit test.",
243
+ "integration: mark test as an integration test.",
244
+ "system: mark test as a system test.",
245
+ "slow: mark test as slow.",
246
+ "no_licence: mark test that do not need a licence.",
247
+ ]
248
+ testpaths = "tests"
249
+ #addopts = "-ra --cov=src/pyedb --cov-report html:.cov/html --cov-report xml:.cov/xml --cov-report term -vv"
250
+
251
+ [tool.numpydoc_validation]
252
+ checks = [
253
+ "GL06", # Found unknown section
254
+ "GL07", # Sections are in the wrong order.
255
+ "GL08", # The object does not have a docstring
256
+ "GL09", # Deprecation warning should precede extended summary
257
+ "GL10", # reST directives {directives} must be followed by two colons
258
+ # Return
259
+ "RT04", # Return value description should start with a capital letter"
260
+ "RT05", # Return value description should finish with "."
261
+ # Summary
262
+ "SS01", # No summary found
263
+ "SS02", # Summary does not start with a capital letter
264
+ "SS03", # Summary does not end with a period
265
+ "SS04", # Summary contains heading whitespaces
266
+ "SS05", # Summary must start with infinitive verb, not third person
267
+ # Parameters
268
+ "PR10", # Parameter "{param_name}" requires a space before the colon
269
+ # separating the parameter name and type",
270
+ ]
271
+
272
+ [tool.towncrier]
273
+ package = "pyedb"
274
+ directory = "doc/changelog.d"
275
+ filename = "doc/source/changelog.rst"
276
+ start_string = ".. towncrier release notes start\n"
277
+ template = "doc/changelog.d/changelog_template.jinja"
278
+ title_format = "`{version} <https://github.com/ansys/pyedb/releases/tag/v{version}>`_ - {project_date}"
279
+ issue_format = "`#{issue} <https://github.com/ansys/pyedb/pull/{issue}>`_"
280
+
281
+ [[tool.towncrier.type]]
282
+ directory = "added"
283
+ name = "Added"
284
+ showcontent = true
285
+
286
+ [[tool.towncrier.type]]
287
+ directory = "dependencies"
288
+ name = "Dependencies"
289
+ showcontent = true
290
+
291
+ [[tool.towncrier.type]]
292
+ directory = "documentation"
293
+ name = "Documentation"
294
+ showcontent = true
295
+
296
+ [[tool.towncrier.type]]
297
+ directory = "fixed"
298
+ name = "Fixed"
299
+ showcontent = true
300
+
301
+ [[tool.towncrier.type]]
302
+ directory = "maintenance"
303
+ name = "Maintenance"
304
+ showcontent = true
305
+
306
+ [[tool.towncrier.type]]
307
+ directory = "miscellaneous"
308
+ name = "Miscellaneous"
309
+ showcontent = true
310
+
311
+ [[tool.towncrier.type]]
312
+ directory = "test"
313
+ name = "Test"
314
+ showcontent = true
@@ -1,15 +1,30 @@
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
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.
22
+
1
23
  # -*- coding: utf-8 -*-
2
24
  import os
3
25
  import sys
4
26
  import warnings
5
27
 
6
- if os.name == "nt":
7
- os.environ["PYTHONMALLOC"] = "malloc"
8
-
9
- # By default we use pyedb legacy implementation
10
- if "PYEDB_USE_DOTNET" not in os.environ:
11
- os.environ["PYEDB_USE_DOTNET"] = "0"
12
-
13
28
  LATEST_DEPRECATED_PYTHON_VERSION = (3, 7)
14
29
 
15
30
 
@@ -44,7 +59,7 @@ deprecation_warning()
44
59
  #
45
60
 
46
61
  pyedb_path = os.path.dirname(__file__)
47
- __version__ = "0.21.0"
62
+ __version__ = "0.66.0"
48
63
  version = __version__
49
64
 
50
65
  #
@@ -0,0 +1,21 @@
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
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.