quantum-metal 0.5.1__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.
- quantum_metal-0.5.1/LICENSE.txt +203 -0
- quantum_metal-0.5.1/MANIFEST.in +3 -0
- quantum_metal-0.5.1/PKG-INFO +460 -0
- quantum_metal-0.5.1/README.md +403 -0
- quantum_metal-0.5.1/pyproject.toml +80 -0
- quantum_metal-0.5.1/qiskit_metal/__init__.py +164 -0
- quantum_metal-0.5.1/qiskit_metal/_defaults.py +139 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/__init__.py +77 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/_imgs.qrc +1 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/browser.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/build_history.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/build_history_small.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/cancel.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/delete.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/drawing.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/force_refresh.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/frequency.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/icon_attributions.txt +57 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/lightbulb.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/log copy.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/log.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/metal_logo.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/painting.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/pan.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/refresh.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/screenshot.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/sos.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/stack.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/_imgs/support.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/component_widget_ui.py +141 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/component_widget_ui.ui +202 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/elements_ui.py +175 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/elements_ui.ui +254 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/elements_window.py +288 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/endcap_hfss_gui.py +158 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/endcap_hfss_ui.py +63 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/endcap_hfss_ui.ui +97 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/endcap_q3d_gui.py +136 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/endcap_q3d_ui.py +63 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/endcap_q3d_ui.ui +97 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/list_model_base.py +80 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/main_window.py +916 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/main_window_base.py +635 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/main_window_rc.qrc +68 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/main_window_rc_rc.py +68401 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/main_window_ui.py +1047 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/main_window_ui.ui +1905 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/net_list_ui.py +47 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/net_list_ui.ui +51 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/net_list_window.py +260 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/plot_window_ui.py +173 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/plot_window_ui.ui +309 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/renderer_gds_gui.py +118 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/renderer_gds_model.py +54 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/renderer_gds_ui.py +129 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/renderer_gds_ui.ui +240 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/renderer_hfss_gui.py +102 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/renderer_hfss_model.py +54 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/renderer_hfss_ui.py +102 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/renderer_hfss_ui.ui +203 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/renderer_q3d_gui.py +99 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/renderer_q3d_model.py +54 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/renderer_q3d_ui.py +89 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/renderer_q3d_ui.ui +179 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_down.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_down@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_down_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_down_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_down_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_down_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_down_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_down_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_left.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_left@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_left_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_left_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_left_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_left_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_left_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_left_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_right.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_right@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_right_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_right_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_right_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_right_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_right_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_right_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_up.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_up@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_up_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_up_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_up_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_up_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_up_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/arrow_up_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/base_icon.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/base_icon@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/base_icon_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/base_icon_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/base_icon_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/base_icon_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/base_icon_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/base_icon_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_closed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_closed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_closed_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_closed_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_closed_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_closed_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_closed_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_closed_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_end.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_end@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_end_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_end_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_end_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_end_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_end_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_end_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_line.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_line@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_line_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_line_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_line_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_line_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_line_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_line_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_more.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_more@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_more_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_more_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_more_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_more_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_more_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_more_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_open.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_open@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_open_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_open_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_open_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_open_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_open_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/branch_open_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_checked.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_checked@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_checked_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_checked_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_checked_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_checked_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_checked_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_checked_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_indeterminate.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_indeterminate@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_indeterminate_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_indeterminate_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_indeterminate_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_indeterminate_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_indeterminate_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_indeterminate_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_unchecked.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_unchecked@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_unchecked_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_unchecked_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_unchecked_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_unchecked_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_unchecked_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/checkbox_unchecked_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_horizontal.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_horizontal@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_horizontal_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_horizontal_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_horizontal_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_horizontal_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_horizontal_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_horizontal_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_vertical.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_vertical@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_vertical_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_vertical_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_vertical_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_vertical_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_vertical_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/line_vertical_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_checked.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_checked@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_checked_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_checked_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_checked_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_checked_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_checked_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_checked_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_unchecked.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_unchecked@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_unchecked_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_unchecked_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_unchecked_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_unchecked_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_unchecked_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/radio_unchecked_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_horizontal.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_horizontal@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_horizontal_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_horizontal_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_horizontal_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_horizontal_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_horizontal_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_horizontal_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_vertical.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_vertical@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_vertical_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_vertical_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_vertical_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_vertical_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_vertical_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_move_vertical_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_horizontal.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_horizontal@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_horizontal_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_horizontal_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_horizontal_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_horizontal_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_horizontal_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_horizontal_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_vertical.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_vertical@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_vertical_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_vertical_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_vertical_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_vertical_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_vertical_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/toolbar_separator_vertical_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/transparent.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/transparent@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/transparent_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/transparent_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/transparent_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/transparent_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/transparent_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/transparent_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_close.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_close@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_close_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_close_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_close_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_close_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_close_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_close_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_grip.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_grip@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_grip_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_grip_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_grip_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_grip_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_grip_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_grip_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_minimize.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_minimize@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_minimize_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_minimize_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_minimize_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_minimize_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_minimize_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_minimize_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_undock.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_undock@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_undock_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_undock_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_undock_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_undock_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_undock_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/rc/window_undock_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_dark/style.qss +2206 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_down.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_down@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_down_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_down_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_down_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_down_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_down_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_down_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_left.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_left@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_left_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_left_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_left_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_left_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_left_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_left_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_right.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_right@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_right_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_right_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_right_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_right_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_right_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_right_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_up.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_up@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_up_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_up_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_up_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_up_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_up_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/arrow_up_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/base_icon.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/base_icon@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/base_icon_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/base_icon_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/base_icon_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/base_icon_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/base_icon_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/base_icon_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_closed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_closed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_closed_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_closed_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_closed_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_closed_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_closed_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_closed_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_end.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_end@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_end_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_end_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_end_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_end_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_end_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_end_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_line.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_line@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_line_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_line_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_line_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_line_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_line_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_line_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_more.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_more@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_more_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_more_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_more_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_more_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_more_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_more_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_open.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_open@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_open_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_open_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_open_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_open_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_open_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/branch_open_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_checked.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_checked@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_checked_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_checked_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_checked_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_checked_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_checked_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_checked_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_indeterminate.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_indeterminate@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_indeterminate_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_indeterminate_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_indeterminate_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_indeterminate_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_indeterminate_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_indeterminate_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_unchecked.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_unchecked@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_unchecked_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_unchecked_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_unchecked_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_unchecked_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_unchecked_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/checkbox_unchecked_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_horizontal.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_horizontal@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_horizontal_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_horizontal_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_horizontal_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_horizontal_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_horizontal_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_horizontal_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_vertical.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_vertical@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_vertical_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_vertical_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_vertical_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_vertical_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_vertical_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/line_vertical_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_checked.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_checked@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_checked_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_checked_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_checked_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_checked_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_checked_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_checked_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_unchecked.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_unchecked@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_unchecked_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_unchecked_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_unchecked_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_unchecked_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_unchecked_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/radio_unchecked_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_horizontal.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_horizontal@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_horizontal_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_horizontal_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_horizontal_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_horizontal_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_horizontal_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_horizontal_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_vertical.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_vertical@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_vertical_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_vertical_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_vertical_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_vertical_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_vertical_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_move_vertical_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_horizontal.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_horizontal@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_horizontal_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_horizontal_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_horizontal_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_horizontal_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_horizontal_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_horizontal_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_vertical.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_vertical@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_vertical_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_vertical_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_vertical_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_vertical_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_vertical_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/toolbar_separator_vertical_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/transparent.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/transparent@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/transparent_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/transparent_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/transparent_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/transparent_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/transparent_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/transparent_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_close.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_close@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_close_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_close_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_close_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_close_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_close_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_close_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_grip.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_grip@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_grip_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_grip_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_grip_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_grip_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_grip_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_grip_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_minimize.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_minimize@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_minimize_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_minimize_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_minimize_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_minimize_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_minimize_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_minimize_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_undock.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_undock@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_undock_disabled.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_undock_disabled@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_undock_focus.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_undock_focus@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_undock_pressed.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/rc/window_undock_pressed@2x.png +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/styles/metal_light_gray/style.qss +2184 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/tree_view_base.py +59 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/utility/__init__.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/utility/_handle_qt_messages.py +169 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/utility/_toolbox_qt.py +106 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/utility/utils.py +16 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/__init__.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/all_components/__init__.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/all_components/table_model_all_components.py +264 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/all_components/table_view_all_components.py +330 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/bases/QWidget_PlaceholderText.py +79 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/bases/__init__.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/bases/dict_tree_base.py +613 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/bases/expanding_toolbar.py +82 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/build_history/__init__.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/build_history/build_history_scroll_area.py +43 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/build_history/build_history_scroll_area_ui.py +36 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/build_history/build_history_scroll_area_ui.ui +33 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/create_component_window/__init__.py +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/create_component_window/model_view/__init__.py +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/create_component_window/model_view/tree_delegate_param_entry.py +83 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/create_component_window/model_view/tree_model_param_entry.py +885 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/create_component_window/model_view/tree_view_param_entry.py +56 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/create_component_window/parameter_entry_window.py +544 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/create_component_window/parameter_entry_window_ui.py +139 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/create_component_window/parameter_entry_window_ui.ui +134 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/edit_component/__init__.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/edit_component/component_widget.py +352 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/edit_component/table_model_options.py +296 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/edit_component/table_view_options.py +68 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/edit_component/tree_model_options.py +133 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/edit_component/tree_view_options.py +78 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/log_widget/__init__.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/log_widget/log_metal.py +441 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/plot_widget/__init__.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/plot_widget/plot_window.py +144 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/qlibrary_display/__init__.py +0 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/qlibrary_display/delegate_qlibrary.py +150 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/qlibrary_display/file_model_qlibrary.py +104 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/qlibrary_display/proxy_model_qlibrary.py +113 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/qlibrary_display/tree_view_qlibrary.py +108 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/variable_table/__init__.py +15 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/variable_table/add_delete_table_ui.py +96 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/variable_table/add_delete_table_ui.ui +160 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/variable_table/dialog_popup_ui.py +61 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/variable_table/dialog_popup_ui.ui +106 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/variable_table/prop_val_table_gui.py +92 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/variable_table/prop_val_table_model.py +247 -0
- quantum_metal-0.5.1/qiskit_metal/_gui/widgets/variable_table/right_click_table_view.py +110 -0
- quantum_metal-0.5.1/qiskit_metal/_is_design.py +55 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/__init__.py +101 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/core/__init__.py +26 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/core/base.py +259 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/core/simulation.py +233 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/em/__init__.py +13 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/em/cpw_calculations.py +247 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/em/kappa_calculation.py +90 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/em/transmission_fitting.py +361 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/hamiltonian/HO_wavefunctions.py +71 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/hamiltonian/__init__.py +13 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/hamiltonian/states_energies.py +136 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/hamiltonian/transmon_CPB_analytic.py +74 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/hamiltonian/transmon_analytics.py +153 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/hamiltonian/transmon_charge_basis.py +364 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/quantization/__init__.py +27 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/quantization/constants.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/quantization/energy_participation_ratio.py +287 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/quantization/lom_core_analysis.py +1537 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/quantization/lom_extensions.py +40 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/quantization/lom_time_evolution_sim.py +54 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/quantization/lumped_capacitive.py +864 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/quantization/lumped_oscillator_model.py +218 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/simulation/__init__.py +28 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/simulation/eigenmode.py +273 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/simulation/lumped_elements.py +243 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/simulation/scattering_impedance.py +279 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/sweep_and_optimize/__init__.py +13 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/sweep_and_optimize/sweeper.py +260 -0
- quantum_metal-0.5.1/qiskit_metal/analyses/sweep_and_optimize/sweeping.py +1289 -0
- quantum_metal-0.5.1/qiskit_metal/config.py +152 -0
- quantum_metal-0.5.1/qiskit_metal/designs/__init__.py +87 -0
- quantum_metal-0.5.1/qiskit_metal/designs/design_base.py +1151 -0
- quantum_metal-0.5.1/qiskit_metal/designs/design_flipchip.py +157 -0
- quantum_metal-0.5.1/qiskit_metal/designs/design_multiplanar.py +150 -0
- quantum_metal-0.5.1/qiskit_metal/designs/design_planar.py +164 -0
- quantum_metal-0.5.1/qiskit_metal/designs/interface_components.py +329 -0
- quantum_metal-0.5.1/qiskit_metal/designs/net_info.py +188 -0
- quantum_metal-0.5.1/qiskit_metal/draw/__init__.py +32 -0
- quantum_metal-0.5.1/qiskit_metal/draw/basic.py +498 -0
- quantum_metal-0.5.1/qiskit_metal/draw/mpl.py +19 -0
- quantum_metal-0.5.1/qiskit_metal/draw/utility.py +941 -0
- quantum_metal-0.5.1/qiskit_metal/qgeometries/__init__.py +32 -0
- quantum_metal-0.5.1/qiskit_metal/qgeometries/qgeometries_handler.py +837 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/__init__.py +196 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/_template.py +45 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/core/__init__.py +19 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/core/_parsed_dynamic_attrs.py +300 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/core/base.py +1328 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/core/design_check.py +86 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/core/qroute.py +740 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/core/qubit.py +99 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/couplers/__init__.py +13 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/couplers/cap_n_interdigital_tee.py +197 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/couplers/coupled_line_tee.py +157 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/couplers/line_tee.py +120 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/couplers/tunable_coupler_01.py +210 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/couplers/tunable_coupler_02.py +211 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/lumped/__init__.py +13 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/lumped/cap_3_interdigital.py +162 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/lumped/cap_n_interdigital.py +187 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/lumped/resonator_coil_rect.py +130 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/JJ_Dolan.py +130 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/JJ_Manhattan.py +107 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/SQUID_loop.py +140 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/Transmon_Interdigitated.py +319 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/__init__.py +13 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/star_qubit.py +465 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/transmon_concentric.py +209 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/transmon_concentric_type_2.py +362 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/transmon_cross.py +232 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/transmon_cross_fl.py +133 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/transmon_pocket.py +277 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/transmon_pocket_6.py +285 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/transmon_pocket_cl.py +184 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/qubits/transmon_pocket_teeth.py +332 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/resonators/__init__.py +13 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/resonators/readoutres_fc.py +211 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/resonators/resonator_lumped.py +494 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/sample_shapes/__init__.py +13 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/sample_shapes/circle_caterpillar.py +91 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/sample_shapes/circle_raster.py +74 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/sample_shapes/n_gon.py +73 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/sample_shapes/n_square_spiral.py +105 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/sample_shapes/rectangle.py +65 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/sample_shapes/rectangle_hollow.py +77 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/sample_shapes/smiley_face.py +78 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/terminations/__init__.py +13 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/terminations/launchpad_wb.py +159 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/terminations/launchpad_wb_coupled.py +176 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/terminations/launchpad_wb_driven.py +160 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/terminations/open_to_ground.py +65 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/terminations/short_to_ground.py +56 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/tlines/__init__.py +13 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/tlines/anchored_path.py +410 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/tlines/framed_path.py +361 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/tlines/meandered.py +444 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/tlines/mixed_path.py +204 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/tlines/pathfinder.py +194 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/tlines/straight_path.py +47 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/user_components/BridgeFreeJJ.py +130 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/user_components/__init__.py +0 -0
- quantum_metal-0.5.1/qiskit_metal/qlibrary/user_components/my_qcomponent.py +53 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/__init__.py +120 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_ansys/__init__.py +13 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_ansys/ansys_renderer.py +1803 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_ansys/hfss_renderer.py +1076 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_ansys/parse.py +41 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_ansys/q3d_renderer.py +636 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_ansys_pyaedt/__init__.py +2 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_ansys_pyaedt/hfss_renderer_aedt.py +925 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_ansys_pyaedt/hfss_renderer_drivenmodal_aedt.py +649 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_ansys_pyaedt/hfss_renderer_eigenmode_aedt.py +453 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_ansys_pyaedt/pyaedt_base.py +1120 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_ansys_pyaedt/q3d_renderer_aedt.py +520 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_base/__init__.py +17 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_base/renderer_base.py +446 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_base/renderer_gui_base.py +137 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_base/rndr_analysis.py +139 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_base/rndr_export.py +0 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_elmer/__init__.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_elmer/elmer_configs.py +74 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_elmer/elmer_renderer.py +771 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_elmer/elmer_runner.py +641 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_gds/__init__.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_gds/gds_renderer.py +2661 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_gds/make_cheese.py +477 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_gmsh/__init__.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_gmsh/gmsh_renderer.py +1384 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_gmsh/gmsh_utils.py +396 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_mpl/__init__.py +17 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_mpl/extensions/__init__.py +14 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_mpl/extensions/animated_text.py +124 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_mpl/mpl_canvas.py +862 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_mpl/mpl_interaction.py +789 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_mpl/mpl_renderer.py +534 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_mpl/mpl_toolbox.py +407 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/renderer_mpl/patch.py +118 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/setup_default.py +21 -0
- quantum_metal-0.5.1/qiskit_metal/renderers/utils.py +35 -0
- quantum_metal-0.5.1/qiskit_metal/tests/__init__.py +34 -0
- quantum_metal-0.5.1/qiskit_metal/tests/assertions.py +109 -0
- quantum_metal-0.5.1/qiskit_metal/tests/custom_decorators.py +49 -0
- quantum_metal-0.5.1/qiskit_metal/tests/run_all_tests.py +67 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_analyses_1_inst_options.py +249 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_analyses_2_functionality.py +789 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_data/fake_component.py +0 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_data/quad_coupler.py +61 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_default_options.py +213 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_designs.py +523 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_draw.py +878 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_gui_basic.py +56 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_qgeometries.py +334 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_qlibrary_1_instantiate.py +931 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_qlibrary_2_options.py +792 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_qlibrary_3_functionality.py +582 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_qlibrary_3_options.py +819 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_renderers.py +690 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_speed.py +47 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_toolbox_metal.py +865 -0
- quantum_metal-0.5.1/qiskit_metal/tests/test_toolbox_python.py +184 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_metal/__init__.py +69 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_metal/about.py +170 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_metal/bounds_for_path_and_poly_tables.py +321 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_metal/exceptions.py +68 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_metal/import_export.py +85 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_metal/layer_stack_handler.py +306 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_metal/math_and_overrides.py +93 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_metal/parsing.py +536 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_python/__init__.py +49 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_python/_logging.py +144 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_python/attr_dict.py +22 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_python/display.py +219 -0
- quantum_metal-0.5.1/qiskit_metal/toolbox_python/utility_functions.py +637 -0
- quantum_metal-0.5.1/quantum_metal.egg-info/PKG-INFO +460 -0
- quantum_metal-0.5.1/quantum_metal.egg-info/SOURCES.txt +713 -0
- quantum_metal-0.5.1/quantum_metal.egg-info/dependency_links.txt +1 -0
- quantum_metal-0.5.1/quantum_metal.egg-info/requires.txt +34 -0
- quantum_metal-0.5.1/quantum_metal.egg-info/top_level.txt +6 -0
- quantum_metal-0.5.1/requirements.txt +20 -0
- quantum_metal-0.5.1/setup.cfg +4 -0
- quantum_metal-0.5.1/setup.py +72 -0
- quantum_metal-0.5.1/tutorials/resources/balaclava.py +378 -0
- quantum_metal-0.5.1/tutorials/resources/my429_qcomponents.py +128 -0
- quantum_metal-0.5.1/tutorials/resources/skeleton_renderer.py +311 -0
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
Copyright 2017 IBM and its contributors
|
|
2
|
+
|
|
3
|
+
Apache License
|
|
4
|
+
Version 2.0, January 2004
|
|
5
|
+
http://www.apache.org/licenses/
|
|
6
|
+
|
|
7
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
8
|
+
|
|
9
|
+
1. Definitions.
|
|
10
|
+
|
|
11
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
12
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
13
|
+
|
|
14
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
15
|
+
the copyright owner that is granting the License.
|
|
16
|
+
|
|
17
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
18
|
+
other entities that control, are controlled by, or are under common
|
|
19
|
+
control with that entity. For the purposes of this definition,
|
|
20
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
21
|
+
direction or management of such entity, whether by contract or
|
|
22
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
23
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
24
|
+
|
|
25
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
26
|
+
exercising permissions granted by this License.
|
|
27
|
+
|
|
28
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
29
|
+
including but not limited to software source code, documentation
|
|
30
|
+
source, and configuration files.
|
|
31
|
+
|
|
32
|
+
"Object" form shall mean any form resulting from mechanical
|
|
33
|
+
transformation or translation of a Source form, including but
|
|
34
|
+
not limited to compiled object code, generated documentation,
|
|
35
|
+
and conversions to other media types.
|
|
36
|
+
|
|
37
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
38
|
+
Object form, made available under the License, as indicated by a
|
|
39
|
+
copyright notice that is included in or attached to the work
|
|
40
|
+
(an example is provided in the Appendix below).
|
|
41
|
+
|
|
42
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
43
|
+
form, that is based on (or derived from) the Work and for which the
|
|
44
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
45
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
46
|
+
of this License, Derivative Works shall not include works that remain
|
|
47
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
48
|
+
the Work and Derivative Works thereof.
|
|
49
|
+
|
|
50
|
+
"Contribution" shall mean any work of authorship, including
|
|
51
|
+
the original version of the Work and any modifications or additions
|
|
52
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
53
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
54
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
55
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
56
|
+
means any form of electronic, verbal, or written communication sent
|
|
57
|
+
to the Licensor or its representatives, including but not limited to
|
|
58
|
+
communication on electronic mailing lists, source code control systems,
|
|
59
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
60
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
61
|
+
excluding communication that is conspicuously marked or otherwise
|
|
62
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
63
|
+
|
|
64
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
65
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
66
|
+
subsequently incorporated within the Work.
|
|
67
|
+
|
|
68
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
69
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
70
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
71
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
72
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
73
|
+
Work and such Derivative Works in Source or Object form.
|
|
74
|
+
|
|
75
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
76
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
77
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
78
|
+
(except as stated in this section) patent license to make, have made,
|
|
79
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
80
|
+
where such license applies only to those patent claims licensable
|
|
81
|
+
by such Contributor that are necessarily infringed by their
|
|
82
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
83
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
84
|
+
institute patent litigation against any entity (including a
|
|
85
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
86
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
87
|
+
or contributory patent infringement, then any patent licenses
|
|
88
|
+
granted to You under this License for that Work shall terminate
|
|
89
|
+
as of the date such litigation is filed.
|
|
90
|
+
|
|
91
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
92
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
93
|
+
modifications, and in Source or Object form, provided that You
|
|
94
|
+
meet the following conditions:
|
|
95
|
+
|
|
96
|
+
(a) You must give any other recipients of the Work or
|
|
97
|
+
Derivative Works a copy of this License; and
|
|
98
|
+
|
|
99
|
+
(b) You must cause any modified files to carry prominent notices
|
|
100
|
+
stating that You changed the files; and
|
|
101
|
+
|
|
102
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
103
|
+
that You distribute, all copyright, patent, trademark, and
|
|
104
|
+
attribution notices from the Source form of the Work,
|
|
105
|
+
excluding those notices that do not pertain to any part of
|
|
106
|
+
the Derivative Works; and
|
|
107
|
+
|
|
108
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
109
|
+
distribution, then any Derivative Works that You distribute must
|
|
110
|
+
include a readable copy of the attribution notices contained
|
|
111
|
+
within such NOTICE file, excluding those notices that do not
|
|
112
|
+
pertain to any part of the Derivative Works, in at least one
|
|
113
|
+
of the following places: within a NOTICE text file distributed
|
|
114
|
+
as part of the Derivative Works; within the Source form or
|
|
115
|
+
documentation, if provided along with the Derivative Works; or,
|
|
116
|
+
within a display generated by the Derivative Works, if and
|
|
117
|
+
wherever such third-party notices normally appear. The contents
|
|
118
|
+
of the NOTICE file are for informational purposes only and
|
|
119
|
+
do not modify the License. You may add Your own attribution
|
|
120
|
+
notices within Derivative Works that You distribute, alongside
|
|
121
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
122
|
+
that such additional attribution notices cannot be construed
|
|
123
|
+
as modifying the License.
|
|
124
|
+
|
|
125
|
+
You may add Your own copyright statement to Your modifications and
|
|
126
|
+
may provide additional or different license terms and conditions
|
|
127
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
128
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
129
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
130
|
+
the conditions stated in this License.
|
|
131
|
+
|
|
132
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
133
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
134
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
135
|
+
this License, without any additional terms or conditions.
|
|
136
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
137
|
+
the terms of any separate license agreement you may have executed
|
|
138
|
+
with Licensor regarding such Contributions.
|
|
139
|
+
|
|
140
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
141
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
142
|
+
except as required for reasonable and customary use in describing the
|
|
143
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
144
|
+
|
|
145
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
146
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
147
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
148
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
149
|
+
implied, including, without limitation, any warranties or conditions
|
|
150
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
151
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
152
|
+
appropriateness of using or redistributing the Work and assume any
|
|
153
|
+
risks associated with Your exercise of permissions under this License.
|
|
154
|
+
|
|
155
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
156
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
157
|
+
unless required by applicable law (such as deliberate and grossly
|
|
158
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
159
|
+
liable to You for damages, including any direct, indirect, special,
|
|
160
|
+
incidental, or consequential damages of any character arising as a
|
|
161
|
+
result of this License or out of the use or inability to use the
|
|
162
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
163
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
164
|
+
other commercial damages or losses), even if such Contributor
|
|
165
|
+
has been advised of the possibility of such damages.
|
|
166
|
+
|
|
167
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
168
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
169
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
170
|
+
or other liability obligations and/or rights consistent with this
|
|
171
|
+
License. However, in accepting such obligations, You may act only
|
|
172
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
173
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
174
|
+
defend, and hold each Contributor harmless for any liability
|
|
175
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
176
|
+
of your accepting any such warranty or additional liability.
|
|
177
|
+
|
|
178
|
+
END OF TERMS AND CONDITIONS
|
|
179
|
+
|
|
180
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
181
|
+
|
|
182
|
+
To apply the Apache License to your work, attach the following
|
|
183
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
184
|
+
replaced with your own identifying information. (Don't include
|
|
185
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
186
|
+
comment syntax for the file format. We also recommend that a
|
|
187
|
+
file or class name and description of purpose be included on the
|
|
188
|
+
same "printed page" as the copyright notice for easier
|
|
189
|
+
identification within third-party archives.
|
|
190
|
+
|
|
191
|
+
Copyright 2017 IBM and its contributors.
|
|
192
|
+
|
|
193
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
194
|
+
you may not use this file except in compliance with the License.
|
|
195
|
+
You may obtain a copy of the License at
|
|
196
|
+
|
|
197
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
198
|
+
|
|
199
|
+
Unless required by applicable law or agreed to in writing, software
|
|
200
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
201
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
202
|
+
See the License for the specific language governing permissions and
|
|
203
|
+
limitations under the License.
|
|
@@ -0,0 +1,460 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: quantum-metal
|
|
3
|
+
Version: 0.5.1
|
|
4
|
+
Summary: Quantum Metal (formerly Qiskit Metal): superconducting quantum device design toolkit.
|
|
5
|
+
Home-page: https://github.com/Qiskit/qiskit-metal
|
|
6
|
+
Author: Qiskit Metal Development Team
|
|
7
|
+
Author-email: Quantum Metal Community <qiskit-metal@qiskit.org>
|
|
8
|
+
License: Apache-2.0
|
|
9
|
+
Project-URL: Homepage, https://github.com/qiskit-community/qiskit-metal/
|
|
10
|
+
Project-URL: Documentation, https://qiskit-community.github.io/qiskit-metal/
|
|
11
|
+
Keywords: quantum,hardware,EDA,superconducting,qiskit
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Intended Audience :: Science/Research
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE.txt
|
|
22
|
+
Requires-Dist: numpy>=1.23
|
|
23
|
+
Requires-Dist: scipy>=1.10
|
|
24
|
+
Requires-Dist: pandas>=1.5
|
|
25
|
+
Requires-Dist: shapely>=2.0
|
|
26
|
+
Requires-Dist: geopandas>=0.13
|
|
27
|
+
Requires-Dist: networkx>=2.8
|
|
28
|
+
Requires-Dist: jsonschema
|
|
29
|
+
Requires-Dist: pyyaml
|
|
30
|
+
Requires-Dist: matplotlib>=3.7
|
|
31
|
+
Requires-Dist: cycler
|
|
32
|
+
Requires-Dist: requests
|
|
33
|
+
Requires-Dist: jinja2
|
|
34
|
+
Requires-Dist: addict
|
|
35
|
+
Requires-Dist: gdstk
|
|
36
|
+
Requires-Dist: pyqtgraph
|
|
37
|
+
Provides-Extra: gui
|
|
38
|
+
Requires-Dist: PySide6; extra == "gui"
|
|
39
|
+
Provides-Extra: docs
|
|
40
|
+
Requires-Dist: sphinx>=7.0; extra == "docs"
|
|
41
|
+
Requires-Dist: sphinx-design; extra == "docs"
|
|
42
|
+
Requires-Dist: nbsphinx; extra == "docs"
|
|
43
|
+
Requires-Dist: myst-parser; extra == "docs"
|
|
44
|
+
Requires-Dist: qiskit-sphinx-theme; extra == "docs"
|
|
45
|
+
Requires-Dist: ipykernel; extra == "docs"
|
|
46
|
+
Requires-Dist: nbconvert; extra == "docs"
|
|
47
|
+
Requires-Dist: graphviz; extra == "docs"
|
|
48
|
+
Requires-Dist: pandoc; extra == "docs"
|
|
49
|
+
Provides-Extra: test
|
|
50
|
+
Requires-Dist: pytest; extra == "test"
|
|
51
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
52
|
+
Requires-Dist: tox; extra == "test"
|
|
53
|
+
Dynamic: author
|
|
54
|
+
Dynamic: home-page
|
|
55
|
+
Dynamic: license-file
|
|
56
|
+
Dynamic: requires-python
|
|
57
|
+
|
|
58
|
+
# Quantum Metal (formerly: Qiskit Metal)
|
|
59
|
+
[](https://opensource.org/licenses/Apache-2.0)<!--- long-description-skip-begin -->[](https://github.com/Qiskit/qiskit-metal/releases)<!--- long-description-skip-begin -->[](https://qisk.it/join-slack)[](https://doi.org/10.5281/zenodo.4618153) [Discord](https://discord.gg/kaZ3UFuq)
|
|
60
|
+
|
|
61
|
+
>
|
|
62
|
+
> Quantum Metal is an open-source framework for engineers and scientists to design superconducting quantum devices with ease.
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
## ⚠️ Transition Notice – Qiskit Metal → Quantum Metal (v0.5)
|
|
68
|
+
|
|
69
|
+
As part of the **v0.5 release**, we are formally beginning the transition of the project:
|
|
70
|
+
|
|
71
|
+
- **New project name:** Quantum Metal
|
|
72
|
+
- **Current import path:** `qiskit_metal` (will remain until a follow-up PR)
|
|
73
|
+
- **Repository rename:** This repository will soon be renamed to **`quantum-metal`**
|
|
74
|
+
- **GitHub continuity:** We will keep the same repo, issues, stars, forks, and history
|
|
75
|
+
- **PyPI transition:** `qiskit-metal` will remain available in a stable, archived state
|
|
76
|
+
- **Future package:** `quantum-metal` (or similar) will be published after the import change PR
|
|
77
|
+
|
|
78
|
+
This ensures a smooth, non-breaking transition for all existing users.
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
## 🌐 Part of the Quantum Device Design Ecosystem
|
|
82
|
+
|
|
83
|
+
Quantum Metal has graduated from being an IBM maintained project and is now one of the core tools in a growing community ecosystem for superconducting quantum device design and education, including:
|
|
84
|
+
|
|
85
|
+
- **Quantum Device Workspace (QDW)** – https://qdw-ucla.squarespace.com/
|
|
86
|
+
Hosted annually at UCLA/USC with invited leaders in the field.
|
|
87
|
+
Recent speakers include: *Michel Devoret, Andreas Wallraff, Zlatko Minev, Eli Levenson-Falk.*
|
|
88
|
+
[Video recordings](https://www.youtube.com/@uclaqcsa)
|
|
89
|
+
|
|
90
|
+
[Sign for 2026](https://qdw-ucla.squarespace.com/qdw2026) to meet the community, learn from experts, and participate directly.*
|
|
91
|
+
|
|
92
|
+
- **Quantum Device Consortium (QDC)** — an upcoming community organization that will maintain and evolve Quantum Metal as part of a shared ecosystem of tools (including SQUADDS, SQDMetal, scqubits, pyEPR, and many others).
|
|
93
|
+
*([Website and governance page](https://qdc-qcsa.vercel.app))* [Discord Channel here](https://discord.gg/kaZ3UFuq)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
## 🌱 From IBM to a Community-Maintained Project
|
|
97
|
+
|
|
98
|
+
Originally developed at IBM, originated by **Dr. Zlatko K. Minev**, Qiskit Metal has, over the last two years, naturally transitioned into a **community-driven project** supported by multiple universities, research groups, labs, and individual contributors.
|
|
99
|
+
|
|
100
|
+
This v0.5 release marks the formal graduation into that next phase of the project’s life.
|
|
101
|
+
|
|
102
|
+
Development continues through the **QDC**, the community, and active maintainers, working in close collaboration with Zlatko Minev and contributors across QDW/QDC who are shaping this next chapter.
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
## 🙏 BIG THANK YOU to Community Contributors (PR #1002)
|
|
107
|
+
|
|
108
|
+
This release is the result of a substantial collective effort.
|
|
109
|
+
Our deepest thanks go to:
|
|
110
|
+
|
|
111
|
+
**Sadman Ahmed Shanto**, **Abhishek Chakraborty**, **PositroniumJS**, **SamWolski**,
|
|
112
|
+
**Nicolas Dirnegger**, **Eli Levenson-Falk**, and **Murat Can Sarıhan**
|
|
113
|
+
|
|
114
|
+
for their extensive testing, debugging, patching, platform validation, and contributions to the massive PySide6 transition in PR #1002.
|
|
115
|
+
|
|
116
|
+
We are grateful to all users, contributors, and maintainers who continue to move the project forward.
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
<!-- ## Installation
|
|
121
|
+
If you are interested in customizing your experience, or if you are unable to install qiskit-metal using the `pip install` instructions below, consider installing directly the source code, following the instructions in the [documentation](https://qiskit-community.github.io/qiskit-metal/installation.html) and/or the [installation instructions for developers](https://github.com/Qiskit/qiskit-metal/blob/main/README_Developers.md).
|
|
122
|
+
|
|
123
|
+
For normal use, please continue reading.
|
|
124
|
+
|
|
125
|
+
### The Qiskit Metal deployed package
|
|
126
|
+
You can install Qiskit Metal via the pip tool (a python package manager).
|
|
127
|
+
```bash
|
|
128
|
+
pip install qiskit-metal
|
|
129
|
+
```
|
|
130
|
+
PIP will handle most of the dependencies automatically and you will always install the latest (and well-tested) version of the package.
|
|
131
|
+
|
|
132
|
+
Some of the dependencies, namely pyside2 and geopandas, might require manual installation, depending on your specific system compatibility. If you encounter installation or execution errors, please refer first to the [FAQ](https://qiskit-community.github.io/qiskit-metal/faq.html).
|
|
133
|
+
|
|
134
|
+
We recommend to install qiskit-metal in a conda environment or venv, to prevent version conflicts with pre-existing package versions.
|
|
135
|
+
|
|
136
|
+
### Jupyter Notebook
|
|
137
|
+
At this time, we recommend using Jupyter notebook/lab to be able to access all the Qiskit Metal features. Jupyter is not installed with the default dependencies, to accommodate those users intending to utilize a centralized or customized installation.
|
|
138
|
+
|
|
139
|
+
If you require a fresh installation, please refer to either [anaconda.org](https://anaconda.org/) or [jupyter.org](https://jupyter.org/install).
|
|
140
|
+
|
|
141
|
+
Unless you installed the entire `jupyter` package in your current environment, do not forget to create the appropriate kernel to make the environment (thus qiskit-metal) available to jupyter (instructions in the [FAQ](https://qiskit-community.github.io/qiskit-metal/faq.html)) -->
|
|
142
|
+
|
|
143
|
+
## Installation
|
|
144
|
+
|
|
145
|
+
During the transition to **Quantum Metal**, the package is still published on PyPI under the legacy name `qiskit-metal` until the import path is updated in a follow-up release. The instructions below ensure users can install the new **v0.5** release while keeping compatibility.
|
|
146
|
+
|
|
147
|
+
If you prefer installing from source or contributing, please follow the developer installation guide in the [documentation](https://qiskit-community.github.io/qiskit-metal/installation.html) and/or the [developer README](https://github.com/Qiskit/qiskit-metal/blob/main/README_Developers.md).
|
|
148
|
+
|
|
149
|
+
### Installing the Current Release (v0.5)
|
|
150
|
+
|
|
151
|
+
For now, Quantum Metal v0.5 is **not** published on PyPI. The only way to install the updated version is directly **from source**. Clone the repository and install it locally.
|
|
152
|
+
|
|
153
|
+
Continuous integration runs on **Python 3.11 and 3.12** across Linux (Ubuntu 24.04), macOS 15, and Windows, plus separate jobs for lint and docs. Sticking to those versions mirrors the CI-tested setup; on Ubuntu you may need extra system libs for Gmsh (see CI script).
|
|
154
|
+
|
|
155
|
+
> **Key notes to keep in mind:**
|
|
156
|
+
>
|
|
157
|
+
> * Python **3.11/3.12** mirror the CI matrix; earlier 3.10 also works but isn’t CI-covered.
|
|
158
|
+
> * macOS ARM users should avoid Python 3.12+ to prevent C/C++ toolchain errors.
|
|
159
|
+
> * `uv` is the **preferred and fastest** method and avoids most scientific‑stack headaches.
|
|
160
|
+
|
|
161
|
+
### Preferred: `uv` (fast, modern, reliable)
|
|
162
|
+
First install `uv`, then clone the repository, use Python 3.11, set up the virtual environment, then install requirements and Quantum Metal.
|
|
163
|
+
|
|
164
|
+
- **macOS / Linux (bash):**
|
|
165
|
+
```bash
|
|
166
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
167
|
+
git clone https://github.com/qiskit-community/qiskit-metal.git quantum-metal
|
|
168
|
+
cd quantum-metal
|
|
169
|
+
uv python pin 3.11
|
|
170
|
+
uv venv
|
|
171
|
+
source .venv/bin/activate
|
|
172
|
+
uv pip install -r requirements.txt
|
|
173
|
+
uv pip install -e .
|
|
174
|
+
```
|
|
175
|
+
- **Windows (PowerShell):**
|
|
176
|
+
```powershell
|
|
177
|
+
iwr https://astral.sh/uv/install.ps1 -UseBasicParsing | iex
|
|
178
|
+
git clone https://github.com/qiskit-community/qiskit-metal.git quantum-metal
|
|
179
|
+
cd quantum-metal
|
|
180
|
+
uv python pin 3.11
|
|
181
|
+
uv venv
|
|
182
|
+
.\.venv\Scripts\Activate.ps1
|
|
183
|
+
uv pip install -r requirements.txt
|
|
184
|
+
uv pip install -e .
|
|
185
|
+
```
|
|
186
|
+
On Ubuntu you may need system packages for Gmsh/Qt (see CI: `libglu1-mesa`, `libegl1-mesa-dev`), and on Windows/macOS ensure build tools/CLT are present if you add native extensions.
|
|
187
|
+
|
|
188
|
+
### Option 2: Conda (best for binary-heavy scientific stacks)
|
|
189
|
+
|
|
190
|
+
```bash
|
|
191
|
+
conda create -n quantum-metal python=3.11
|
|
192
|
+
conda activate quantum-metal
|
|
193
|
+
pip install -r requirements.txt
|
|
194
|
+
pip install -e .
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
### Option 3: Standard venv (simple, lightweight)
|
|
198
|
+
|
|
199
|
+
```bash
|
|
200
|
+
python3.11 -m venv qm_env
|
|
201
|
+
source qm_env/bin/activate
|
|
202
|
+
pip install --upgrade pip
|
|
203
|
+
pip install -r requirements.txt
|
|
204
|
+
pip install -e .
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
### Using Jupyter Notebook
|
|
209
|
+
|
|
210
|
+
We recommend using Jupyter Notebook/Lab to access the full GUI and interactive features. If Jupyter is not installed in your environment, install it with:
|
|
211
|
+
|
|
212
|
+
```bash
|
|
213
|
+
pip install jupyterlab
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
If needed, add your environment as a Jupyter kernel:
|
|
217
|
+
|
|
218
|
+
```bash
|
|
219
|
+
python -m ipykernel install --user --name quantum-metal
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
## Quick Start: Creating Your First Quantum Component in Qiskit Metal:
|
|
223
|
+
Now that Qiskit Metal is installed, it's time to begin working with it.
|
|
224
|
+
We are ready to try out a quantum chip example, which is simulated locally using
|
|
225
|
+
the Qiskit MetalGUI element. This is a simple example that makes a qubit.
|
|
226
|
+
```python
|
|
227
|
+
from qiskit_metal import designs, MetalGUI, open_docs, draw
|
|
228
|
+
|
|
229
|
+
# Start a planar-chip quantum device design
|
|
230
|
+
design = designs.DesignPlanar()
|
|
231
|
+
design.chips.main.size.size_x = '11mm'
|
|
232
|
+
design.chips.main.size.size_y = '9mm'
|
|
233
|
+
print(design.chips.main)
|
|
234
|
+
|
|
235
|
+
# Launch the Qiskit Metal GUI to interactively view, edit, and simulate the design
|
|
236
|
+
gui = MetalGUI(design)
|
|
237
|
+
|
|
238
|
+
# Create a new qubit form the library, a transmon, by creating an object of this class.
|
|
239
|
+
from qiskit_metal.qlibrary.qubits.transmon_pocket import TransmonPocket
|
|
240
|
+
# Let's also add a connector pad, called "a" with default options, you can overwrite them as dictionary keys
|
|
241
|
+
q1 = TransmonPocket(design, 'Q1', options=dict(connection_pads=dict(a=dict())))
|
|
242
|
+
|
|
243
|
+
# To see qubit, rebuild the design with this new qubit in place
|
|
244
|
+
gui.rebuild()
|
|
245
|
+
# Select for editing, highlight, and autoscale gui view
|
|
246
|
+
gui.edit_component('Q1')
|
|
247
|
+
gui.autoscale()
|
|
248
|
+
|
|
249
|
+
# Change options.
|
|
250
|
+
q1.options.pos_x = '0.5 mm'
|
|
251
|
+
q1.options.pos_y = '0.25 mm'
|
|
252
|
+
q1.options.pad_height = '90um'
|
|
253
|
+
q1.options.pad_width = '455um'
|
|
254
|
+
q1.options.pad_gap = '30 um'
|
|
255
|
+
|
|
256
|
+
# Update the component geometry after changing the options.
|
|
257
|
+
gui.rebuild()
|
|
258
|
+
gui.autoscale()
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+

|
|
262
|
+
|
|
263
|
+
Get a list of all the qcomponents in QDesign and then zoom on them.
|
|
264
|
+
```python
|
|
265
|
+
all_component_names = design.components.keys()
|
|
266
|
+
gui.zoom_on_components(all_component_names)
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
<!-- ```python
|
|
270
|
+
# Lets the design automatically delete an existing component when you create a new component with the same name, so the new component replaces the old one.
|
|
271
|
+
design.overwrite_enabled = True
|
|
272
|
+
``` -->
|
|
273
|
+
|
|
274
|
+
#### Closing the Qiskit Metal GUI.
|
|
275
|
+
```python
|
|
276
|
+
>>> gui.main_window.close()
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
A script is available [here](https://qiskit-community.github.io/qiskit-metal/tut/overview/1.1%20High%20Level%20Demo%20of%20Qiskit%20Metal.html), where we also show the overview of Qiskit Metal.
|
|
280
|
+
|
|
281
|
+
## Community and Support
|
|
282
|
+
|
|
283
|
+
#### Watch the recorded tutorials
|
|
284
|
+
[](https://youtube.com/playlist?list=PLOFEBzvs-VvqHl5ZqVmhB_FcSqmLufsjb)
|
|
285
|
+
|
|
286
|
+
The streaming will also be recorded and made available [here](https://www.youtube.com/playlist?list=PLOFEBzvs-VvqHl5ZqVmhB_FcSqmLufsjb) for offline review.
|
|
287
|
+
|
|
288
|
+
#### Take part in the live tutorials and discussion
|
|
289
|
+
Through June 2021 we are offering live tutorials and Q&A. [Sign up](https://airtable.com/shrxQEgKqZCf319F3) to receive an invite to the upcoming sessions. The streaming will also be recorded and made available for offline review. Find [here](https://github.com/Qiskit/qiskit-metal/blob/main/README_Tutorials.md) more details on schedule and use the Slack channel to give us feedback and to request the most relevant content to you.
|
|
290
|
+
|
|
291
|
+
#### Get help: Slack
|
|
292
|
+
[](https://qisk.it/join-slack)
|
|
293
|
+
|
|
294
|
+
Use the slack channel. Join [qiskit slack](https://qisk.it/join-slack) and then join the `#metal` channel to communicate with the developers and other participants. You may also use this channel to inquire about collaborations.
|
|
295
|
+
|
|
296
|
+
## Contribution Guidelines
|
|
297
|
+
If you'd like to contribute to Qiskit Metal, please take a look at our
|
|
298
|
+
[contribution guidelines](https://github.com/Qiskit/qiskit-metal/blob/main/CONTRIBUTING.md). This project adheres to Qiskit's [code of conduct](https://github.com/Qiskit/qiskit-metal/blob/main/CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.
|
|
299
|
+
We use [GitHub issues](https://github.com/Qiskit/qiskit-metal/issues) for tracking requests and bugs. Please
|
|
300
|
+
[join the Qiskit Slack community](https://qisk.it/join-slack)
|
|
301
|
+
and use our [Qiskit Slack channel](https://qiskit.slack.com) for discussion and simple questions.
|
|
302
|
+
For questions that are more suited for a forum we use the Qiskit tag in the [Stack Exchange](https://quantumcomputing.stackexchange.com/questions/tagged/qiskit).
|
|
303
|
+
|
|
304
|
+
## Next Steps
|
|
305
|
+
Now you're set up and ready to check out some of the other examples from our
|
|
306
|
+
[Qiskit Metal Tutorials](https://github.com/Qiskit/qiskit-metal/blob/main/tutorials/) repository or [Qiskit Metal Documentation](https://qiskit-community.github.io/qiskit-metal/tut/).
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
---
|
|
310
|
+
|
|
311
|
+
# Big Picture Architecutre Overview
|
|
312
|
+
|
|
313
|
+
### Diagram
|
|
314
|
+
|
|
315
|
+
The **Qiskit Metal** codebase is organized into several key modules, each with a distinct role in enabling the design, analysis, and visualization of quantum circuits. Below is an overview of the primary components and their interactions, discussed deeper in the [Architecture Readme](README_Architecture.md) and the docs:
|
|
316
|
+
|
|
317
|
+
```mermaid
|
|
318
|
+
%%{init: {"flowchart": {"htmlLabels": true}, 'theme':'forest'} }%%
|
|
319
|
+
graph TB
|
|
320
|
+
classDef core fill:#87cefa,stroke:#000000;
|
|
321
|
+
classDef gui fill:#FFDDC1,stroke:#000000;
|
|
322
|
+
classDef renderer fill:#DBB9FF,stroke:#000000;
|
|
323
|
+
classDef utility fill:#FFD700,stroke:#000000;
|
|
324
|
+
classDef design fill:#90EE90,stroke:#000000;
|
|
325
|
+
classDef analysis fill:#FFB6C1,stroke:#000000;
|
|
326
|
+
|
|
327
|
+
subgraph Qiskit_Metal
|
|
328
|
+
subgraph Core
|
|
329
|
+
QLibraryComponents["QLibrary Components"]
|
|
330
|
+
QDesign["QDesign"]
|
|
331
|
+
QComponent["QComponent"]
|
|
332
|
+
QRoute["QRoute"]
|
|
333
|
+
BaseQubit["BaseQubit"]
|
|
334
|
+
end
|
|
335
|
+
|
|
336
|
+
subgraph GUI
|
|
337
|
+
MetalGUI["MetalGUI"]
|
|
338
|
+
end
|
|
339
|
+
|
|
340
|
+
subgraph Renderers
|
|
341
|
+
QRenderer["QRenderer"]
|
|
342
|
+
QRendererGui["QRendererGui"]
|
|
343
|
+
QGDSRenderer["QGDSRenderer"]
|
|
344
|
+
QAnsysRenderer["QAnsysRenderer"]
|
|
345
|
+
QHFSSRenderer["QHFSSRenderer"]
|
|
346
|
+
QQ3DRenderer["QQ3DRenderer"]
|
|
347
|
+
QPyaedt["QPyaedt"]
|
|
348
|
+
QGmshRenderer["QGmshRenderer"]
|
|
349
|
+
QElmerRenderer["QElmerRenderer"]
|
|
350
|
+
end
|
|
351
|
+
|
|
352
|
+
subgraph Analyses
|
|
353
|
+
Hamiltonian["Hamiltonian"]
|
|
354
|
+
Sweep_Options["Sweep_Options"]
|
|
355
|
+
end
|
|
356
|
+
|
|
357
|
+
subgraph Utilities
|
|
358
|
+
Parsing["Parsing"]
|
|
359
|
+
Exceptions["Exceptions"]
|
|
360
|
+
Logging["Logging"]
|
|
361
|
+
Toolbox["Toolbox"]
|
|
362
|
+
end
|
|
363
|
+
end
|
|
364
|
+
|
|
365
|
+
QLibraryComponents --> QDesign
|
|
366
|
+
QRenderer --> QDesign
|
|
367
|
+
QRendererGui --> QRenderer
|
|
368
|
+
MetalGUI --> QRendererGui
|
|
369
|
+
MetalGUI --> QLibraryComponents
|
|
370
|
+
MetalGUI --> QDesign
|
|
371
|
+
QGDSRenderer --> QRenderer
|
|
372
|
+
QAnsysRenderer --> QRenderer
|
|
373
|
+
QHFSSRenderer --> QRenderer
|
|
374
|
+
QQ3DRenderer --> QRenderer
|
|
375
|
+
QPyaedt --> QRenderer
|
|
376
|
+
QGmshRenderer --> QRenderer
|
|
377
|
+
QElmerRenderer --> QRenderer
|
|
378
|
+
Parsing --> QDesign
|
|
379
|
+
Exceptions --> QDesign
|
|
380
|
+
Logging --> QDesign
|
|
381
|
+
Toolbox --> QDesign
|
|
382
|
+
QDesign --> QComponent
|
|
383
|
+
QDesign --> QRoute
|
|
384
|
+
QDesign --> BaseQubit
|
|
385
|
+
Hamiltonian --> QDesign
|
|
386
|
+
Sweep_Options --> QDesign
|
|
387
|
+
|
|
388
|
+
class QLibraryComponents,QDesign,QComponent,QRoute,BaseQubit core;
|
|
389
|
+
class MetalGUI gui;
|
|
390
|
+
class QRenderer,QRendererGui,QGDSRenderer,QAnsysRenderer,QHFSSRenderer,QQ3DRenderer,QPyaedt,QGmshRenderer,QElmerRenderer renderer;
|
|
391
|
+
class Parsing,Exceptions,Logging,Toolbox utility;
|
|
392
|
+
class Hamiltonian,Sweep_Options analysis;
|
|
393
|
+
```
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
### Core
|
|
397
|
+
The **Core** module serves as the backbone of Qiskit Metal, housing essential elements for design and component creation:
|
|
398
|
+
- **QLibrary Components**: Predefined library of quantum circuit elements, such as qubits and resonators, that can be used in designs.
|
|
399
|
+
- **QDesign**: The central design framework that integrates all components and handles design rules.
|
|
400
|
+
- **QComponent**: Base class for all components in the design.
|
|
401
|
+
- **QRoute**: Specialized class for managing connections between components.
|
|
402
|
+
- **BaseQubit**: Represents foundational qubit structures used in circuit designs.
|
|
403
|
+
|
|
404
|
+
### Renderers
|
|
405
|
+
The **Renderers** module facilitates exporting designs to external tools for electromagnetic simulation and layout rendering:
|
|
406
|
+
- **QRenderer**: Base class for all renderers.
|
|
407
|
+
- **QRendererGui**: GUI interface for managing renderers.
|
|
408
|
+
- Specialized renderers like:
|
|
409
|
+
- **QGDSRenderer**
|
|
410
|
+
- **QAnsysRenderer**
|
|
411
|
+
- **QHFSSRenderer**
|
|
412
|
+
- **QQ3DRenderer**
|
|
413
|
+
- **QPyaedt**
|
|
414
|
+
- **QGmshRenderer**
|
|
415
|
+
- **QElmerRenderer**
|
|
416
|
+
|
|
417
|
+
These renderers enable integration with industry-standard tools for detailed simulation and fabrication.
|
|
418
|
+
|
|
419
|
+
### Analyses
|
|
420
|
+
The **Analyses** module includes tools for performing simulations and extracting insights from designs:
|
|
421
|
+
- **Hamiltonian**: Supports calculations of Hamiltonian parameters.
|
|
422
|
+
- **Sweep Options**: Provides tools for parametric sweeps and optimizations.
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
### GUI
|
|
426
|
+
The **GUI** module provides tools for user-friendly interaction with Qiskit Metal. The **MetalGUI** clas is the primary graphical interface for managing designs and visualizations. It is discussed in more depth in the [Architecture Readme](README_Architecture.md).
|
|
427
|
+
|
|
428
|
+
### Utilities
|
|
429
|
+
The **Utilities** module supports the overall functionality of Qiskit Metal by offering supplementary tools.
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
### Key Interactions
|
|
434
|
+
- The **Core** modules form the foundation and integrate tightly with the **Renderers**, **GUI**, and **Analyses** modules.
|
|
435
|
+
- The **GUI** depends on the **Core** and **Renderers** to provide visualization and interactivity.
|
|
436
|
+
- The **Renderers** serve as bridges between Qiskit Metal and external tools, interacting with the **Core** to export designs.
|
|
437
|
+
- The **Analyses** modules leverage the **Core** to extract meaningful data for optimization and validation.
|
|
438
|
+
- The **Utilities** modules provide essential supporting functionalities across the entire codebase.
|
|
439
|
+
|
|
440
|
+
This modular structure ensures scalability, flexibility, and ease of use for designing, analyzing, and fabricating quantum circuits.
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
---
|
|
444
|
+
|
|
445
|
+
# Backmatter
|
|
446
|
+
|
|
447
|
+
## Authors and Citation
|
|
448
|
+
Qiskit Metal is the work of [many people](https://github.com/Qiskit/qiskit-metal/pulse/monthly) who contribute to the project at different levels. Metal was conceived and developed by [Zlatko Minev](https://www.zlatko-minev.com) at IBM; then co-led with Thomas McConkey. If you use Qiskit Metal, please cite as per the included [BibTeX file](https://github.com/Qiskit/qiskit-metal/blob/main/Qiskit_Metal.bib). For icon attributions, see [here](https://github.com/Qiskit/qiskit-metal/blob/main/qiskit_metal/_gui/_imgs/icon_attributions.txt).
|
|
449
|
+
|
|
450
|
+
## Changelog and Release Notes
|
|
451
|
+
The changelog provides a quick overview of notable changes for a given release.
|
|
452
|
+
|
|
453
|
+
The changelog for a particular release can be found in the correspondent Github release page. For example, you can find the changelog for the `0.0.4` release [here](https://github.com/Qiskit/qiskit-metal/releases/tag/0.0.4)
|
|
454
|
+
|
|
455
|
+
The changelog for all releases can be found in the release page: [](https://github.com/Qiskit/qiskit-metal/releases)
|
|
456
|
+
|
|
457
|
+
Additionally, as part of each release detailed release notes are written to document in detail what has changed as part of a release. This includes any documentation on potential breaking changes on upgrade and new features.
|
|
458
|
+
|
|
459
|
+
## License
|
|
460
|
+
[Apache License 2.0](https://github.com/Qiskit/qiskit-metal/blob/main/LICENSE.txt)
|