MoleditPy 1.16.3__py3-none-any.whl → 1.17.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. moleditpy/__init__.py +13 -0
  2. moleditpy/__main__.py +1 -1
  3. moleditpy/main.py +1 -1
  4. moleditpy/modules/__init__.py +13 -0
  5. moleditpy/modules/about_dialog.py +13 -1
  6. moleditpy/modules/align_plane_dialog.py +12 -0
  7. moleditpy/modules/alignment_dialog.py +12 -0
  8. moleditpy/modules/analysis_window.py +12 -0
  9. moleditpy/modules/angle_dialog.py +12 -0
  10. moleditpy/modules/atom_item.py +12 -0
  11. moleditpy/modules/bond_item.py +12 -0
  12. moleditpy/modules/bond_length_dialog.py +12 -0
  13. moleditpy/modules/calculation_worker.py +12 -0
  14. moleditpy/modules/color_settings_dialog.py +12 -0
  15. moleditpy/modules/constants.py +13 -1
  16. moleditpy/modules/constrained_optimization_dialog.py +12 -0
  17. moleditpy/modules/custom_interactor_style.py +12 -0
  18. moleditpy/modules/custom_qt_interactor.py +11 -1
  19. moleditpy/modules/dialog3_d_picking_mixin.py +12 -0
  20. moleditpy/modules/dihedral_dialog.py +12 -0
  21. moleditpy/modules/main_window.py +1 -1
  22. moleditpy/modules/main_window_compute.py +9 -0
  23. moleditpy/modules/main_window_dialog_manager.py +10 -0
  24. moleditpy/modules/main_window_edit_3d.py +9 -0
  25. moleditpy/modules/main_window_edit_actions.py +10 -0
  26. moleditpy/modules/main_window_export.py +9 -0
  27. moleditpy/modules/main_window_main_init.py +9 -0
  28. moleditpy/modules/main_window_molecular_parsers.py +10 -0
  29. moleditpy/modules/main_window_project_io.py +9 -0
  30. moleditpy/modules/main_window_string_importers.py +9 -0
  31. moleditpy/modules/main_window_ui_manager.py +9 -0
  32. moleditpy/modules/main_window_view_3d.py +9 -0
  33. moleditpy/modules/main_window_view_loaders.py +9 -0
  34. moleditpy/modules/mirror_dialog.py +12 -0
  35. moleditpy/modules/molecular_data.py +12 -0
  36. moleditpy/modules/molecule_scene.py +12 -0
  37. moleditpy/modules/move_group_dialog.py +12 -0
  38. moleditpy/modules/periodic_table_dialog.py +12 -0
  39. moleditpy/modules/planarize_dialog.py +12 -0
  40. moleditpy/modules/settings_dialog.py +12 -0
  41. moleditpy/modules/template_preview_item.py +12 -0
  42. moleditpy/modules/template_preview_view.py +12 -0
  43. moleditpy/modules/translation_dialog.py +12 -0
  44. moleditpy/modules/user_template_dialog.py +12 -0
  45. moleditpy/modules/zoomable_view.py +12 -1
  46. moleditpy-1.17.0.dist-info/METADATA +934 -0
  47. moleditpy-1.17.0.dist-info/RECORD +55 -0
  48. moleditpy-1.17.0.dist-info/licenses/LICENSE +674 -0
  49. moleditpy-1.16.3.dist-info/METADATA +0 -274
  50. moleditpy-1.16.3.dist-info/RECORD +0 -54
  51. {moleditpy-1.16.3.dist-info → moleditpy-1.17.0.dist-info}/WHEEL +0 -0
  52. {moleditpy-1.16.3.dist-info → moleditpy-1.17.0.dist-info}/entry_points.txt +0 -0
  53. {moleditpy-1.16.3.dist-info → moleditpy-1.17.0.dist-info}/top_level.txt +0 -0
@@ -1,3 +1,15 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ MoleditPy — A Python-based molecular editing software
6
+
7
+ Author: Hiromichi Yokoyama
8
+ License: GPL-3.0 license
9
+ Repo: https://github.com/HiroYokoyama/python_molecular_editor
10
+ DOI 10.5281/zenodo.17268532
11
+ """
12
+
1
13
  from PyQt6.QtWidgets import (
2
14
  QDialog, QVBoxLayout, QTabWidget, QWidget, QFormLayout, QPushButton, QHBoxLayout,
3
15
  QCheckBox, QComboBox, QLabel, QColorDialog, QSlider, QFrame, QMessageBox
@@ -1,3 +1,15 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ MoleditPy — A Python-based molecular editing software
6
+
7
+ Author: Hiromichi Yokoyama
8
+ License: GPL-3.0 license
9
+ Repo: https://github.com/HiroYokoyama/python_molecular_editor
10
+ DOI 10.5281/zenodo.17268532
11
+ """
12
+
1
13
  from PyQt6.QtWidgets import (
2
14
  QGraphicsItem
3
15
  )
@@ -1,3 +1,15 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ MoleditPy — A Python-based molecular editing software
6
+
7
+ Author: Hiromichi Yokoyama
8
+ License: GPL-3.0 license
9
+ Repo: https://github.com/HiroYokoyama/python_molecular_editor
10
+ DOI 10.5281/zenodo.17268532
11
+ """
12
+
1
13
  from PyQt6.QtWidgets import QGraphicsView
2
14
 
3
15
  from PyQt6.QtCore import Qt, QTimer
@@ -1,3 +1,15 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ MoleditPy — A Python-based molecular editing software
6
+
7
+ Author: Hiromichi Yokoyama
8
+ License: GPL-3.0 license
9
+ Repo: https://github.com/HiroYokoyama/python_molecular_editor
10
+ DOI 10.5281/zenodo.17268532
11
+ """
12
+
1
13
  from PyQt6.QtWidgets import (
2
14
  QDialog, QVBoxLayout, QLabel, QGridLayout, QLineEdit, QCheckBox, QPushButton, QHBoxLayout
3
15
  )
@@ -1,3 +1,15 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ MoleditPy — A Python-based molecular editing software
6
+
7
+ Author: Hiromichi Yokoyama
8
+ License: GPL-3.0 license
9
+ Repo: https://github.com/HiroYokoyama/python_molecular_editor
10
+ DOI 10.5281/zenodo.17268532
11
+ """
12
+
1
13
  from PyQt6.QtWidgets import (
2
14
  QDialog, QVBoxLayout, QLabel, QWidget, QGridLayout, QScrollArea,
3
15
  QHBoxLayout, QPushButton, QGraphicsScene, QInputDialog, QMessageBox
@@ -1,9 +1,20 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ MoleditPy — A Python-based molecular editing software
6
+
7
+ Author: Hiromichi Yokoyama
8
+ License: GPL-3.0 license
9
+ Repo: https://github.com/HiroYokoyama/python_molecular_editor
10
+ DOI 10.5281/zenodo.17268532
11
+ """
12
+
1
13
  from PyQt6.QtWidgets import (
2
14
  QGraphicsView
3
15
  )
4
16
 
5
17
 
6
-
7
18
  from PyQt6.QtCore import (
8
19
  Qt, QPointF
9
20
  )