You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Various ways to analyze and visualize solvation shell structures, which wraps [`PyVista`](https://docs.pyvista.org/version/stable/). Meant primarily for analyzing the outputs produced by LAMMPS here.
8
8
9
-
## Installation
9
+
## Installation
10
+
11
+
### From PyPI
12
+
13
+
You can install `solvis` from PyPI like so:
14
+
15
+
```bash
16
+
pip install solvis-tools
17
+
```
18
+
19
+
### From source
10
20
11
21
We use [`micromamba`](https://mamba.readthedocs.io/en/latest/user_guide/micromamba.html) as the package manager, but feel free to use your own poison. Create and activate the environment.
Copy file name to clipboardExpand all lines: pyproject.toml
+9-7Lines changed: 9 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,25 +1,27 @@
1
1
[build-system]
2
-
requires = ["meson-python"]
2
+
requires = ["meson-python>=0.16.0"]
3
3
build-backend = "mesonpy"
4
4
# Important, tells pip how to install the package
5
5
6
6
[project]
7
-
name = "solvis"
8
-
version = "0.0.1"
9
-
description = "A module for analyzing and visualizing solvation shells in LAMMPS output files."
7
+
name = "solvis-tools"
8
+
version = "0.1.4"
9
+
description = "A module for analyzing and visualizing solvation shells in LAMMPS output files, but would work with most files that can be handled by ASE."
0 commit comments