molvector 1.0.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.
- molvector/__init__.py +3 -0
- molvector/assets/icons/icon.svg +108 -0
- molvector/assets/icons/icon_align.svg +108 -0
- molvector/assets/icons/icon_draw.svg +56 -0
- molvector/assets/icons/icon_select.svg +56 -0
- molvector/assets/molvector_linux.png +0 -0
- molvector/assets/molvector_macos.png +0 -0
- molvector/assets/molvector_windows.png +0 -0
- molvector/gui.py +4834 -0
- molvector/render.py +2236 -0
- molvector-1.0.4.dist-info/METADATA +30 -0
- molvector-1.0.4.dist-info/RECORD +15 -0
- molvector-1.0.4.dist-info/WHEEL +5 -0
- molvector-1.0.4.dist-info/entry_points.txt +2 -0
- molvector-1.0.4.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: molvector
|
|
3
|
+
Version: 1.0.4
|
|
4
|
+
Summary: Interactive 3D Molecule Viewer and Builder
|
|
5
|
+
Author-email: Corentin Rossi <corentin.mj.rossi@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/CorentinRossi/Molvector
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: numpy>=1.21
|
|
11
|
+
Requires-Dist: svgwrite
|
|
12
|
+
Requires-Dist: PyQt6>=6.5
|
|
13
|
+
Requires-Dist: mol_strudel
|
|
14
|
+
Provides-Extra: spectra
|
|
15
|
+
Requires-Dist: matplotlib; extra == "spectra"
|
|
16
|
+
Provides-Extra: openbabel
|
|
17
|
+
Requires-Dist: openbabel; extra == "openbabel"
|
|
18
|
+
|
|
19
|
+
# Molvector
|
|
20
|
+
|
|
21
|
+
Molvector is an interactive 3D molecule viewer, builder, and Gaussian input generator.
|
|
22
|
+
|
|
23
|
+
You can install the software by downloading or cloning the repository and running
|
|
24
|
+
```bash
|
|
25
|
+
pip install .
|
|
26
|
+
```
|
|
27
|
+
inside the folder. Then, you can start the software with the command
|
|
28
|
+
```bash
|
|
29
|
+
molvector
|
|
30
|
+
```
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
molvector/__init__.py,sha256=9tBWCPc3mCT0c2nht-hBfuQ2-aWhMtRk1DcNacR8tzg,117
|
|
2
|
+
molvector/gui.py,sha256=nvRJ4yQB2G51wOnwTNV0UMc3U0q4aZVYMGkkwsSHak4,205637
|
|
3
|
+
molvector/render.py,sha256=mwPsiaU8ywFWRfc5TUGz1afFeOPbHdJt2FKn0oUmHj8,87412
|
|
4
|
+
molvector/assets/molvector_linux.png,sha256=2qrHGorTZW2WCWNTxxBqCcNuD3C7PnbozeTpalJ8YK0,8160
|
|
5
|
+
molvector/assets/molvector_macos.png,sha256=OyyApNJX6Y1mknHVdF7iZpH66x3YOG4u6Z_SchX0fuI,485477
|
|
6
|
+
molvector/assets/molvector_windows.png,sha256=2qrHGorTZW2WCWNTxxBqCcNuD3C7PnbozeTpalJ8YK0,8160
|
|
7
|
+
molvector/assets/icons/icon.svg,sha256=l3WuIMghkp5kA3QAPKF-_2kNLNQUSXPADqEr4UTuFyI,4095
|
|
8
|
+
molvector/assets/icons/icon_align.svg,sha256=HqInJacTrzH-pG5czKgHyHqZrlZ4wg4mRg-XrMDmQRQ,5779
|
|
9
|
+
molvector/assets/icons/icon_draw.svg,sha256=kAPIxgOVn7xaMx3KEwAu32NAcg5RiXBn6EZSiOXvr9c,1761
|
|
10
|
+
molvector/assets/icons/icon_select.svg,sha256=T7TPYbNNM5pVyicig_bnZ2xuD0ObAtkI2KVfTpIJEfY,1737
|
|
11
|
+
molvector-1.0.4.dist-info/METADATA,sha256=H2zCgb7S_SJc2yjkgGmoUK1WO3_eSanialuEdAjlgvc,855
|
|
12
|
+
molvector-1.0.4.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
13
|
+
molvector-1.0.4.dist-info/entry_points.txt,sha256=ft_moErRxMA34O7RlZdtyQ-k1cYRevvOOfVjhQ7d0-Y,45
|
|
14
|
+
molvector-1.0.4.dist-info/top_level.txt,sha256=GsAJwtB_tI6iD6-LT7ufUF7HJ9IB70yJeT3Fj8IS1tw,10
|
|
15
|
+
molvector-1.0.4.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
molvector
|