MoleditPy 1.16.3__py3-none-any.whl → 1.16.4__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.
moleditpy/__main__.py CHANGED
@@ -5,7 +5,7 @@
5
5
  MoleditPy — A Python-based molecular editing software
6
6
 
7
7
  Author: Hiromichi Yokoyama
8
- License: Apache-2.0 license
8
+ License: GPL-3.0 license
9
9
  Repo: https://github.com/HiroYokoyama/python_molecular_editor
10
10
  DOI 10.5281/zenodo.17268532
11
11
  """
moleditpy/main.py CHANGED
@@ -5,7 +5,7 @@
5
5
  MoleditPy — A Python-based molecular editing software
6
6
 
7
7
  Author: Hiromichi Yokoyama
8
- License: Apache-2.0 license
8
+ License: GPL-3.0 license
9
9
  Repo: https://github.com/HiroYokoyama/python_molecular_editor
10
10
  DOI 10.5281/zenodo.17268532
11
11
  """
@@ -50,7 +50,7 @@ class AboutDialog(QDialog):
50
50
  layout.addWidget(self.image_label)
51
51
 
52
52
  # Add text information
53
- info_text = f"MoleditPy Ver. {VERSION}\nAuthor: Hiromichi Yokoyama\nLicense: Apache-2.0"
53
+ info_text = f"MoleditPy Ver. {VERSION}\nAuthor: Hiromichi Yokoyama\nLicense: GPL-3.0 license"
54
54
  info_label = QLabel(info_text)
55
55
  info_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
56
56
  layout.addWidget(info_label)
@@ -4,7 +4,7 @@ from PyQt6.QtGui import QFont, QColor
4
4
  from rdkit import Chem
5
5
 
6
6
  #Version
7
- VERSION = '1.16.3'
7
+ VERSION = '1.16.4'
8
8
 
9
9
  ATOM_RADIUS = 18
10
10
  BOND_OFFSET = 3.5
@@ -5,7 +5,7 @@
5
5
  MoleditPy — A Python-based molecular editing software
6
6
 
7
7
  Author: Hiromichi Yokoyama
8
- License: Apache-2.0 license
8
+ License: GPL-3.0 license
9
9
  Repo: https://github.com/HiroYokoyama/python_molecular_editor
10
10
  DOI 10.5281/zenodo.17268532
11
11
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: MoleditPy
3
- Version: 1.16.3
3
+ Version: 1.16.4
4
4
  Summary: A cross-platform, simple, and intuitive molecular structure editor built in Python. It allows 2D molecular drawing and 3D structure visualization. It supports exporting structure files for input to DFT calculation software.
5
5
  Author-email: HiroYokoyama <titech.yoko.hiro@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/HiroYokoyama/python_molecular_editor
@@ -22,8 +22,7 @@ Requires-Dist: pyqt6<6.10
22
22
  Requires-Dist: pyvista<0.47
23
23
  Requires-Dist: pyvistaqt<0.12
24
24
  Requires-Dist: rdkit<2025.10
25
- Provides-Extra: openbabel
26
- Requires-Dist: openbabel-wheel<3.2; extra == "openbabel"
25
+ Requires-Dist: openbabel-wheel<3.2
27
26
 
28
27
  # MoleditPy — A Python Molecular Editor
29
28
 
@@ -33,7 +32,7 @@ Requires-Dist: openbabel-wheel<3.2; extra == "openbabel"
33
32
  **MoleditPy** is a cross-platform, intuitive molecular editor built in Python. It provides a seamless workflow for drawing 2D molecular structures, visualizing them in 3D, and performing interactive geometric manipulations. Its powerful editing and export capabilities make it an ideal tool for preparing input files for DFT calculation software.
34
33
 
35
34
  **Author**: HiroYokoyama
36
- **License**: Apache-2.0
35
+ **License**: GPL-v3
37
36
  **Repository**: [https://github.com/HiroYokoyama/python\_molecular\_editor](https://github.com/HiroYokoyama/python_molecular_editor)
38
37
 
39
38
  -----
@@ -109,15 +108,6 @@ For detailed instructions, please refer to the project [Wiki](https://github.com
109
108
  moleditpy-installer
110
109
  ```
111
110
 
112
-
113
- To enable Open Babel features (e.g., alternative 3D structure generation), please install the package manually.
114
- **Note:** Open Babel is licensed under **GPL v2**. Installing this package combines GPL code with this software.
115
-
116
-
117
- ```bash
118
- pip install "moleditpy[openbabel]"
119
- ```
120
-
121
111
  #### Running the Application
122
112
 
123
113
  ```bash
@@ -150,7 +140,7 @@ moleditpy
150
140
 
151
141
  ## License
152
142
 
153
- This project is licensed under the **Apache-2.0 License**. See the `LICENSE` file for details.
143
+ This project is licensed under the **GNU General Public License v3.0 (GPL-v3)**. See the `LICENSE` file for details.
154
144
 
155
145
  -----
156
146
 
@@ -159,7 +149,7 @@ This project is licensed under the **Apache-2.0 License**. See the `LICENSE` fil
159
149
  **MoleditPy**は、Pythonで構築されたクロスプラットフォームかつ直感的な分子エディターです。2Dでの分子描画から3D構造の可視化・編集、さらにはインタラクティブな幾何学的操作まで、シームレスなワークフローを提供します。その強力な編集機能とエクスポート機能により、**DFT計算ソフトウェアのインプット作成に最適なツール**です。
160
150
 
161
151
  **作者**: HiroYokoyama
162
- **ライセンス**: Apache-2.0
152
+ **ライセンス**: GPL-v3
163
153
  **リポジトリ**: [https://github.com/HiroYokoyama/python\_molecular\_editor](https://github.com/HiroYokoyama/python_molecular_editor)
164
154
 
165
155
  -----
@@ -232,13 +222,6 @@ This project is licensed under the **Apache-2.0 License**. See the `LICENSE` fil
232
222
  moleditpy-installer
233
223
  ```
234
224
 
235
- Open Babel 機能(代替的な3D構造生成など)を有効にする場合は、以下のコマンドで個別にインストールしてください。
236
- **注意:** Open Babel は **GPL v2** ライセンスです。このパッケージをインストールすると、GPLの条項が適用される可能性があります。
237
-
238
- ```bash
239
- pip install "moleditpy[openbabel]"
240
- ```
241
-
242
225
  #### アプリケーションの起動
243
226
 
244
227
  ```bash
@@ -271,4 +254,4 @@ moleditpy
271
254
 
272
255
  ## ライセンス
273
256
 
274
- このプロジェクトは **Apache-2.0 License** のもとで公開されています。詳細は `LICENSE` ファイルを参照してください。
257
+ このプロジェクトは **GNU General Public License v3.0 (GPL-v3)** のもとで公開されています。詳細は `LICENSE` ファイルを参照してください。
@@ -1,8 +1,8 @@
1
1
  moleditpy/__init__.py,sha256=QCzpw3P5V_CwDtN4itK4hT9J99JgsH4gmpTfvuus6p8,46
2
- moleditpy/__main__.py,sha256=az0UrbFsuprbQYycF_bSUXxb0F20DuLvYxrZl1-X5EU,831
3
- moleditpy/main.py,sha256=cEZJuCL0HrLPUYvuwPSxgUkaDykVb573A-3qVvjF9RM,1180
2
+ moleditpy/__main__.py,sha256=P4BoaqZ-SgKGoErMZIWRKhzH6CbR8q34ipQ6RtQUEko,828
3
+ moleditpy/main.py,sha256=fI7A2zxlhrtXsyDCLJ3iiGeAc28FSaAj4MPnqBoA8GU,1177
4
4
  moleditpy/modules/__init__.py,sha256=X2Z0R5XpAoOehXdOv_6VlRm4rjt4zb1KPNSoLYIZsqg,1456
5
- moleditpy/modules/about_dialog.py,sha256=ZztVzLIQgH5mfMMOD-eAhYUbecUn8JaBtbCUg8O12t4,3409
5
+ moleditpy/modules/about_dialog.py,sha256=wIcfJe51TgyXQtR9TBUdT6f7xWd3JQOvRpU3pWiOr00,3414
6
6
  moleditpy/modules/align_plane_dialog.py,sha256=D6E0_rM75rKirDkvkJ-diRqNkf8IguqBBLQqDvZJHME,11665
7
7
  moleditpy/modules/alignment_dialog.py,sha256=tS2_5-wnJRDhLcWtPm9-HUm4_v4bAr53EjV82vydA-k,11140
8
8
  moleditpy/modules/analysis_window.py,sha256=asSCm7bgDW00tGaXSwEN17j-de_BN7ql6iwmxb3f54E,9134
@@ -12,13 +12,13 @@ moleditpy/modules/bond_item.py,sha256=zjQHa4vb8xhS9B7cYPRM0nak-f7lr5NQ1uAj_J78ah
12
12
  moleditpy/modules/bond_length_dialog.py,sha256=xlx-bU3tVeLfShdVRw6_Geo5Gl9mztlIfTdT9tJ6WMA,14579
13
13
  moleditpy/modules/calculation_worker.py,sha256=detE48BW08a2tvmKjMgz8zCShgARzsRH-ABmWrPcqZA,42055
14
14
  moleditpy/modules/color_settings_dialog.py,sha256=h4AOKU8dCTenecI8zOM9GfnmKDm7jfe5C4Fa23Budvs,15205
15
- moleditpy/modules/constants.py,sha256=BvPXTjQLBc-sCxWxhcbYctejy9Hfe7tCs9KGwL04tRw,4434
15
+ moleditpy/modules/constants.py,sha256=A_fwyC7OzUuRVbVF5LQ7EQiJ75Wop2fdnwcdKxmXzW0,4434
16
16
  moleditpy/modules/constrained_optimization_dialog.py,sha256=MlWnPze0JJvnqmHx9n3qZWG_h-2kZymT0PQ6lALbCro,29861
17
17
  moleditpy/modules/custom_interactor_style.py,sha256=K_uGM6FezY0kZ3zPqoR6f0nowG40ytt-L4UCAbPlwGM,38184
18
18
  moleditpy/modules/custom_qt_interactor.py,sha256=6mzaVb3Mhp-4nryG5AraEvPPgBJpotrzVYwrpCAKmVo,2186
19
19
  moleditpy/modules/dialog3_d_picking_mixin.py,sha256=gaF1ATevvvF72aBfAjubRcagT2jnVG5RMpEKos_XdKg,4768
20
20
  moleditpy/modules/dihedral_dialog.py,sha256=H6WFvc7NvPHSd5QCMk0NUPhudOzpModXv-42dYL20KM,17809
21
- moleditpy/modules/main_window.py,sha256=Ii36JTPSkZNaqqEc8CXZ1bq9accIMg5yUs1U7_pHgYM,35791
21
+ moleditpy/modules/main_window.py,sha256=mYxSk_KbiRNP0snhiJNN7plzzXNg3B7i-UJSW2q_Kk4,35788
22
22
  moleditpy/modules/main_window_app_state.py,sha256=f9f3JVuC46ijlea2DR8ADa0Jn5r2dgedPPdg8OkmNAU,33374
23
23
  moleditpy/modules/main_window_compute.py,sha256=fiIokVvjzXIwwR3FV3Ltet_K4oL_rT0Z27rPMbvlyyc,51346
24
24
  moleditpy/modules/main_window_dialog_manager.py,sha256=5WU6mFABB0aI4XCywP-cLFPkNQSb3bC0OK0I28SQG_w,19845
@@ -47,8 +47,8 @@ moleditpy/modules/zoomable_view.py,sha256=ZgAmmWXIKtx7AhMjs6H6PCyvb_kpYuankf8Uxs
47
47
  moleditpy/modules/assets/icon.icns,sha256=wD5R6-Vw7K662tVKhu2E1ImN0oUuyAP4youesEQsn9c,139863
48
48
  moleditpy/modules/assets/icon.ico,sha256=RfgFcx7-dHY_2STdsOQCQziY5SNhDr3gPnjO6jzEDPI,147975
49
49
  moleditpy/modules/assets/icon.png,sha256=kCFN1WacYIdy0GN6SFEbNA00ef39pCczBnFdkkBI8Bs,147110
50
- moleditpy-1.16.3.dist-info/METADATA,sha256=KnueAzTtInYy4Jr4vQcihrymNyRze--pWnGLFvVmdQA,18069
51
- moleditpy-1.16.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
52
- moleditpy-1.16.3.dist-info/entry_points.txt,sha256=yH1h9JjALhok1foXT3-hYrC4ufoZt8b7oiBcsdnGNNM,54
53
- moleditpy-1.16.3.dist-info/top_level.txt,sha256=ARICrS4ihlPXqywlKl6o-oJa3Qz3gZRWu_VZsQ3_c44,10
54
- moleditpy-1.16.3.dist-info/RECORD,,
50
+ moleditpy-1.16.4.dist-info/METADATA,sha256=D5Sit5Ban30beY8nsVHg9rBiImPsY5LmvXTK9dPH6Uw,17383
51
+ moleditpy-1.16.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
52
+ moleditpy-1.16.4.dist-info/entry_points.txt,sha256=yH1h9JjALhok1foXT3-hYrC4ufoZt8b7oiBcsdnGNNM,54
53
+ moleditpy-1.16.4.dist-info/top_level.txt,sha256=ARICrS4ihlPXqywlKl6o-oJa3Qz3gZRWu_VZsQ3_c44,10
54
+ moleditpy-1.16.4.dist-info/RECORD,,