rowan-python 1.1.7__tar.gz → 1.1.8__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.
- {rowan_python-1.1.7 → rowan_python-1.1.8}/PKG-INFO +4 -3
- {rowan_python-1.1.7 → rowan_python-1.1.8}/README.md +2 -0
- {rowan_python-1.1.7 → rowan_python-1.1.8}/examples/run.py +4 -5
- {rowan_python-1.1.7 → rowan_python-1.1.8}/pixi.lock +591 -845
- {rowan_python-1.1.7 → rowan_python-1.1.8}/pyproject.toml +2 -4
- {rowan_python-1.1.7 → rowan_python-1.1.8}/rowan/client.py +2 -7
- {rowan_python-1.1.7 → rowan_python-1.1.8}/rowan/rowan_rdkit/chem_utils.py +6 -25
- rowan_python-1.1.8/rowan/utils.py +157 -0
- rowan_python-1.1.7/rowan/utils.py +0 -54
- {rowan_python-1.1.7 → rowan_python-1.1.8}/.github/workflows/python-publish.yml +0 -0
- {rowan_python-1.1.7 → rowan_python-1.1.8}/.gitignore +0 -0
- {rowan_python-1.1.7 → rowan_python-1.1.8}/LICENSE +0 -0
- {rowan_python-1.1.7 → rowan_python-1.1.8}/rowan/__init__.py +0 -0
- {rowan_python-1.1.7 → rowan_python-1.1.8}/rowan/calculation.py +0 -0
- {rowan_python-1.1.7 → rowan_python-1.1.8}/rowan/constants.py +0 -0
- {rowan_python-1.1.7 → rowan_python-1.1.8}/rowan/folder.py +0 -0
- {rowan_python-1.1.7 → rowan_python-1.1.8}/rowan/rowan_rdkit/__init__.py +0 -0
- {rowan_python-1.1.7 → rowan_python-1.1.8}/rowan/workflow.py +0 -0
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rowan-python
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.8
|
|
4
4
|
Summary: Rowan Python Library
|
|
5
5
|
Project-URL: Homepage, https://github.com/rowansci/rowan-client
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/rowansci/rowan-client/issues
|
|
7
7
|
Author-email: Corin Wagen <corin@rowansci.com>
|
|
8
8
|
License-File: LICENSE
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
|
-
Requires-Dist: cctk
|
|
11
10
|
Requires-Dist: httpx
|
|
12
11
|
Requires-Dist: nest-asyncio
|
|
13
12
|
Requires-Dist: rdkit
|
|
14
13
|
Requires-Dist: setuptools
|
|
15
|
-
Requires-Dist: stjames>=0.0.
|
|
14
|
+
Requires-Dist: stjames>=0.0.62
|
|
16
15
|
Description-Content-Type: text/markdown
|
|
17
16
|
|
|
18
17
|
# Rowan Python Library
|
|
@@ -20,6 +19,8 @@ Description-Content-Type: text/markdown
|
|
|
20
19
|
[](https://pypi.python.org/pypi/rowan-python)
|
|
21
20
|
[](https://pixi.sh)
|
|
22
21
|
[](https://github.com/charliermarsh/ruff)
|
|
22
|
+
[](https://pypi.python.org/pypi/rowan-python/)
|
|
23
|
+
|
|
23
24
|
|
|
24
25
|
The Rowan Python library provides convenient access to the Rowan API from applications written in the Python language.
|
|
25
26
|
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
[](https://pypi.python.org/pypi/rowan-python)
|
|
4
4
|
[](https://pixi.sh)
|
|
5
5
|
[](https://github.com/charliermarsh/ruff)
|
|
6
|
+
[](https://pypi.python.org/pypi/rowan-python/)
|
|
7
|
+
|
|
6
8
|
|
|
7
9
|
The Rowan Python library provides convenient access to the Rowan API from applications written in the Python language.
|
|
8
10
|
|
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import cctk
|
|
2
1
|
import rowan
|
|
2
|
+
import stjames
|
|
3
3
|
|
|
4
4
|
rowan.api_key = "rowan-sk..."
|
|
5
|
-
client = rowan.Client()
|
|
6
5
|
|
|
7
|
-
# load molecule by
|
|
8
|
-
molecule =
|
|
6
|
+
# load molecule by smiles (stjames can also load in a variety of file formats)
|
|
7
|
+
molecule = stjames.Molecule.from_smiles("C1CCC1") # cyclobutane
|
|
9
8
|
|
|
10
9
|
# run calculation remotely and return result
|
|
11
|
-
result =
|
|
10
|
+
result = rowan.compute(
|
|
12
11
|
molecule,
|
|
13
12
|
name="opt cyclobutane",
|
|
14
13
|
method="b97-3c",
|