rowan-python 1.1.10__tar.gz → 1.1.11__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.10 → rowan_python-1.1.11}/PKG-INFO +2 -2
- {rowan_python-1.1.10 → rowan_python-1.1.11}/examples/optimization.py +1 -1
- rowan_python-1.1.11/examples/scan.py +34 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/pixi.lock +155 -136
- {rowan_python-1.1.10 → rowan_python-1.1.11}/pyproject.toml +2 -2
- {rowan_python-1.1.10 → rowan_python-1.1.11}/rowan/__init__.py +1 -0
- rowan_python-1.1.11/rowan/protein_cofolding.py +36 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/rowan/workflow.py +4 -2
- {rowan_python-1.1.10 → rowan_python-1.1.11}/.envrc +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/.github/workflows/python-publish.yml +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/.github/workflows/test.yml +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/.gitignore +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/.pre-commit-config.yaml +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/LICENSE +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/README.md +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/examples/bde.py +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/examples/conformers.py +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/examples/multistage_opt.py +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/examples/pka.py +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/rowan/calculation.py +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/rowan/client.py +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/rowan/constants.py +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/rowan/folder.py +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/rowan/protein.py +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/rowan/py.typed +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/rowan/rowan_rdkit/__init__.py +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/rowan/rowan_rdkit/chem_utils.py +0 -0
- {rowan_python-1.1.10 → rowan_python-1.1.11}/rowan/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rowan-python
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.11
|
|
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
|
|
@@ -11,7 +11,7 @@ Requires-Dist: httpx
|
|
|
11
11
|
Requires-Dist: nest-asyncio
|
|
12
12
|
Requires-Dist: rdkit
|
|
13
13
|
Requires-Dist: setuptools
|
|
14
|
-
Requires-Dist: stjames>=0.0.
|
|
14
|
+
Requires-Dist: stjames>=0.0.83
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
|
|
17
17
|
# Rowan Python Library
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Run an optimization calculation on a molecule using Rowan.
|
|
3
3
|
|
|
4
|
-
See documentation at: https://docs.rowansci.com/science/
|
|
4
|
+
See documentation at: https://docs.rowansci.com/science/quantum-chemistry/geometry-optimization
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import json
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Run an scan calculation on a molecule using Rowan.
|
|
3
|
+
|
|
4
|
+
See documentation at: https://docs.rowansci.com/science/workflows/scan
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import json
|
|
8
|
+
|
|
9
|
+
from stjames import Molecule
|
|
10
|
+
|
|
11
|
+
import rowan
|
|
12
|
+
|
|
13
|
+
# rowan.api_key = ""
|
|
14
|
+
|
|
15
|
+
# Run calculation remotely
|
|
16
|
+
result = rowan.compute(
|
|
17
|
+
Molecule.from_smiles("O"),
|
|
18
|
+
workflow_type="scan",
|
|
19
|
+
name="Water Angle scan",
|
|
20
|
+
scan_settings={
|
|
21
|
+
"type": "angle",
|
|
22
|
+
"atoms": [2, 1, 3], # 1-indexed
|
|
23
|
+
"start": 100,
|
|
24
|
+
"stop": 110,
|
|
25
|
+
"num": 5,
|
|
26
|
+
},
|
|
27
|
+
calc_settings={
|
|
28
|
+
"method": "GFN2-xTB",
|
|
29
|
+
"tasks": ["optimize"],
|
|
30
|
+
},
|
|
31
|
+
calc_engine="xtb",
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
print(json.dumps(result, indent=4))
|
|
@@ -17,9 +17,9 @@ environments:
|
|
|
17
17
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda
|
|
18
18
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda
|
|
19
19
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-h767d61c_2.conda
|
|
20
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-
|
|
21
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-
|
|
22
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.
|
|
20
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
|
|
21
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda
|
|
22
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda
|
|
23
23
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
|
|
24
24
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
|
|
25
25
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
|
|
@@ -27,7 +27,7 @@ environments:
|
|
|
27
27
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.3-hf636f53_101_cp313.conda
|
|
28
28
|
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-7_cp313.conda
|
|
29
29
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
|
|
30
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-
|
|
30
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
|
|
31
31
|
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
|
|
32
32
|
- pypi: https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl
|
|
33
33
|
- pypi: https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl
|
|
@@ -37,17 +37,18 @@ environments:
|
|
|
37
37
|
- pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl
|
|
38
38
|
- pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl
|
|
39
39
|
- pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl
|
|
40
|
+
- pypi: https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl
|
|
40
41
|
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
|
|
41
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
42
|
+
- pypi: https://files.pythonhosted.org/packages/1c/12/734dce1087eed1875f2297f687e671cfe53a091b6f2f55f0c7241aad041b/numpy-2.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
|
|
42
43
|
- pypi: https://files.pythonhosted.org/packages/13/eb/2552ecebc0b887f539111c2cd241f538b8ff5891b8903dfe672e997529be/pillow-11.2.1-cp313-cp313-manylinux_2_28_x86_64.whl
|
|
43
44
|
- pypi: https://files.pythonhosted.org/packages/b5/69/831ed22b38ff9b4b64b66569f0e5b7b97cf3638346eb95a2147fdb49ad5f/pydantic-2.11.5-py3-none-any.whl
|
|
44
45
|
- pypi: https://files.pythonhosted.org/packages/eb/3c/f4abd740877a35abade05e437245b192f9d0ffb48bbbbd708df33d3cda37/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
45
46
|
- pypi: https://files.pythonhosted.org/packages/4c/ad/ee7d0410730926a6aa25b735c71d067eb7ca8efcf3484622ff39d42ca7c4/rdkit-2025.3.2-cp313-cp313-manylinux_2_28_x86_64.whl
|
|
46
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
47
|
+
- pypi: https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl
|
|
47
48
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
48
49
|
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
|
|
49
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
50
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
50
|
+
- pypi: https://files.pythonhosted.org/packages/19/f7/faf9ca901cb502a12bdfadf33d10573b1ee3cb917d3c04e3d6a7c8989f09/stjames-0.0.83-py3-none-any.whl
|
|
51
|
+
- pypi: https://files.pythonhosted.org/packages/69/e0/552843e0d356fbb5256d21449fa957fa4eff3bbc135a74a691ee70c7c5da/typing_extensions-4.14.0-py3-none-any.whl
|
|
51
52
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
52
53
|
- pypi: https://files.pythonhosted.org/packages/6b/11/cc635220681e93a0183390e26485430ca2c7b5f9d33b15c74c2861cb8091/urllib3-2.4.0-py3-none-any.whl
|
|
53
54
|
- pypi: .
|
|
@@ -56,16 +57,16 @@ environments:
|
|
|
56
57
|
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda
|
|
57
58
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.0-h286801f_0.conda
|
|
58
59
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.6-h1da3d7d_1.conda
|
|
59
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-
|
|
60
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-
|
|
61
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.
|
|
60
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda
|
|
61
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h5505292_0.conda
|
|
62
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.1-h3f77e49_0.conda
|
|
62
63
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
|
|
63
64
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
|
|
64
65
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.0-h81ee809_1.conda
|
|
65
66
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.13.3-h81fe080_101_cp313.conda
|
|
66
67
|
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-7_cp313.conda
|
|
67
68
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda
|
|
68
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-
|
|
69
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda
|
|
69
70
|
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
|
|
70
71
|
- pypi: https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl
|
|
71
72
|
- pypi: https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl
|
|
@@ -75,17 +76,18 @@ environments:
|
|
|
75
76
|
- pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl
|
|
76
77
|
- pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl
|
|
77
78
|
- pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl
|
|
79
|
+
- pypi: https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl
|
|
78
80
|
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
|
|
79
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
81
|
+
- pypi: https://files.pythonhosted.org/packages/e8/95/73ffdb69e5c3f19ec4530f8924c4386e7ba097efc94b9c0aff607178ad94/numpy-2.3.0-cp313-cp313-macosx_11_0_arm64.whl
|
|
80
82
|
- pypi: https://files.pythonhosted.org/packages/b5/09/29d5cd052f7566a63e5b506fac9c60526e9ecc553825551333e1e18a4858/pillow-11.2.1-cp313-cp313-macosx_11_0_arm64.whl
|
|
81
83
|
- pypi: https://files.pythonhosted.org/packages/b5/69/831ed22b38ff9b4b64b66569f0e5b7b97cf3638346eb95a2147fdb49ad5f/pydantic-2.11.5-py3-none-any.whl
|
|
82
84
|
- pypi: https://files.pythonhosted.org/packages/3a/cc/5999d1eb705a6cefc31f0b4a90e9f7fc400539b1a1030529700cc1b51838/pydantic_core-2.33.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
83
85
|
- pypi: https://files.pythonhosted.org/packages/b0/0a/040342c239e0963c27a370048a812a4f034ef3b62b80910c2f6635216a31/rdkit-2025.3.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
84
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
86
|
+
- pypi: https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl
|
|
85
87
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
86
88
|
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
|
|
87
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
88
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
89
|
+
- pypi: https://files.pythonhosted.org/packages/19/f7/faf9ca901cb502a12bdfadf33d10573b1ee3cb917d3c04e3d6a7c8989f09/stjames-0.0.83-py3-none-any.whl
|
|
90
|
+
- pypi: https://files.pythonhosted.org/packages/69/e0/552843e0d356fbb5256d21449fa957fa4eff3bbc135a74a691ee70c7c5da/typing_extensions-4.14.0-py3-none-any.whl
|
|
89
91
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
90
92
|
- pypi: https://files.pythonhosted.org/packages/6b/11/cc635220681e93a0183390e26485430ca2c7b5f9d33b15c74c2861cb8091/urllib3-2.4.0-py3-none-any.whl
|
|
91
93
|
- pypi: .
|
|
@@ -106,9 +108,9 @@ environments:
|
|
|
106
108
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.1.0-h767d61c_2.conda
|
|
107
109
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_2.conda
|
|
108
110
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.1.0-h767d61c_2.conda
|
|
109
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-
|
|
110
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-
|
|
111
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.
|
|
111
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
|
|
112
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda
|
|
113
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda
|
|
112
114
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
|
|
113
115
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
|
|
114
116
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
|
|
@@ -116,7 +118,7 @@ environments:
|
|
|
116
118
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.3-hf636f53_101_cp313.conda
|
|
117
119
|
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-7_cp313.conda
|
|
118
120
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
|
|
119
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-
|
|
121
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
|
|
120
122
|
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
|
|
121
123
|
- pypi: https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl
|
|
122
124
|
- pypi: https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl
|
|
@@ -135,17 +137,19 @@ environments:
|
|
|
135
137
|
- pypi: https://files.pythonhosted.org/packages/7a/cd/18f8da995b658420625f7ef13f037be53ae04ec5ad33f9b718240dcfd48c/identify-2.6.12-py2.py3-none-any.whl
|
|
136
138
|
- pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl
|
|
137
139
|
- pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl
|
|
138
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
140
|
+
- pypi: https://files.pythonhosted.org/packages/3c/99/9ed3d52d00f1846679e3aa12e2326ac7044b5e7f90dc822b60115fa533ca/ipython-9.3.0-py3-none-any.whl
|
|
139
141
|
- pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl
|
|
140
142
|
- pypi: https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl
|
|
141
143
|
- pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl
|
|
142
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
144
|
+
- pypi: https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl
|
|
145
|
+
- pypi: https://files.pythonhosted.org/packages/ec/64/ff75e71c65a0cb6ee737287c7913ea155845a556c64144c65b811afdb9c7/mypy-1.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
|
|
143
146
|
- pypi: https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl
|
|
144
147
|
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
|
|
145
148
|
- pypi: https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl
|
|
146
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
149
|
+
- pypi: https://files.pythonhosted.org/packages/1c/12/734dce1087eed1875f2297f687e671cfe53a091b6f2f55f0c7241aad041b/numpy-2.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
|
|
147
150
|
- pypi: https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl
|
|
148
151
|
- pypi: https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl
|
|
152
|
+
- pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl
|
|
149
153
|
- pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl
|
|
150
154
|
- pypi: https://files.pythonhosted.org/packages/13/eb/2552ecebc0b887f539111c2cd241f538b8ff5891b8903dfe672e997529be/pillow-11.2.1-cp313-cp313-manylinux_2_28_x86_64.whl
|
|
151
155
|
- pypi: https://files.pythonhosted.org/packages/fe/39/979e8e21520d4e47a0bbe349e2713c0aac6f3d853d0e5b34d76206c439aa/platformdirs-4.3.8-py3-none-any.whl
|
|
@@ -157,19 +161,19 @@ environments:
|
|
|
157
161
|
- pypi: https://files.pythonhosted.org/packages/b5/69/831ed22b38ff9b4b64b66569f0e5b7b97cf3638346eb95a2147fdb49ad5f/pydantic-2.11.5-py3-none-any.whl
|
|
158
162
|
- pypi: https://files.pythonhosted.org/packages/eb/3c/f4abd740877a35abade05e437245b192f9d0ffb48bbbbd708df33d3cda37/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
159
163
|
- pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl
|
|
160
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
161
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
164
|
+
- pypi: https://files.pythonhosted.org/packages/2f/de/afa024cbe022b1b318a3d224125aa24939e99b4ff6f22e0ba639a2eaee47/pytest-8.4.0-py3-none-any.whl
|
|
165
|
+
- pypi: https://files.pythonhosted.org/packages/aa/66/a38138fbf711b2b93592dfd7303bba561f6bc05f85361a0388c105ceb727/pytest_cov-6.2.0-py3-none-any.whl
|
|
162
166
|
- pypi: https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
163
167
|
- pypi: https://files.pythonhosted.org/packages/4c/ad/ee7d0410730926a6aa25b735c71d067eb7ca8efcf3484622ff39d42ca7c4/rdkit-2025.3.2-cp313-cp313-manylinux_2_28_x86_64.whl
|
|
164
168
|
- pypi: https://files.pythonhosted.org/packages/d9/0f/90088510d4758e0ee475ae1fc7f96e7bccd0e31f24107567075482b2fe9e/rdkit_stubs-0.8-py3-none-any.whl
|
|
165
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
166
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
169
|
+
- pypi: https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl
|
|
170
|
+
- pypi: https://files.pythonhosted.org/packages/75/f0/782e7d681d660eda8c536962920c41309e6dd4ebcea9a2714ed5127d44bd/ruff-0.11.13-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
167
171
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
168
172
|
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
|
|
169
173
|
- pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl
|
|
170
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
174
|
+
- pypi: https://files.pythonhosted.org/packages/19/f7/faf9ca901cb502a12bdfadf33d10573b1ee3cb917d3c04e3d6a7c8989f09/stjames-0.0.83-py3-none-any.whl
|
|
171
175
|
- pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl
|
|
172
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
176
|
+
- pypi: https://files.pythonhosted.org/packages/69/e0/552843e0d356fbb5256d21449fa957fa4eff3bbc135a74a691ee70c7c5da/typing_extensions-4.14.0-py3-none-any.whl
|
|
173
177
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
174
178
|
- pypi: https://files.pythonhosted.org/packages/6b/11/cc635220681e93a0183390e26485430ca2c7b5f9d33b15c74c2861cb8091/urllib3-2.4.0-py3-none-any.whl
|
|
175
179
|
- pypi: https://files.pythonhosted.org/packages/f3/40/b1c265d4b2b62b58576588510fc4d1fe60a86319c8de99fd8e9fec617d2c/virtualenv-20.31.2-py3-none-any.whl
|
|
@@ -180,16 +184,16 @@ environments:
|
|
|
180
184
|
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda
|
|
181
185
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.0-h286801f_0.conda
|
|
182
186
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.6-h1da3d7d_1.conda
|
|
183
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-
|
|
184
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-
|
|
185
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.
|
|
187
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda
|
|
188
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h5505292_0.conda
|
|
189
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.1-h3f77e49_0.conda
|
|
186
190
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
|
|
187
191
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
|
|
188
192
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.5.0-h81ee809_1.conda
|
|
189
193
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.13.3-h81fe080_101_cp313.conda
|
|
190
194
|
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-7_cp313.conda
|
|
191
195
|
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda
|
|
192
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-
|
|
196
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda
|
|
193
197
|
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
|
|
194
198
|
- pypi: https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl
|
|
195
199
|
- pypi: https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl
|
|
@@ -208,17 +212,19 @@ environments:
|
|
|
208
212
|
- pypi: https://files.pythonhosted.org/packages/7a/cd/18f8da995b658420625f7ef13f037be53ae04ec5ad33f9b718240dcfd48c/identify-2.6.12-py2.py3-none-any.whl
|
|
209
213
|
- pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl
|
|
210
214
|
- pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl
|
|
211
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
215
|
+
- pypi: https://files.pythonhosted.org/packages/3c/99/9ed3d52d00f1846679e3aa12e2326ac7044b5e7f90dc822b60115fa533ca/ipython-9.3.0-py3-none-any.whl
|
|
212
216
|
- pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl
|
|
213
217
|
- pypi: https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl
|
|
214
218
|
- pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl
|
|
215
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
219
|
+
- pypi: https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl
|
|
220
|
+
- pypi: https://files.pythonhosted.org/packages/36/92/79a969b8302cfe316027c88f7dc6fee70129490a370b3f6eb11d777749d0/mypy-1.16.0-cp313-cp313-macosx_11_0_arm64.whl
|
|
216
221
|
- pypi: https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl
|
|
217
222
|
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
|
|
218
223
|
- pypi: https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl
|
|
219
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
224
|
+
- pypi: https://files.pythonhosted.org/packages/e8/95/73ffdb69e5c3f19ec4530f8924c4386e7ba097efc94b9c0aff607178ad94/numpy-2.3.0-cp313-cp313-macosx_11_0_arm64.whl
|
|
220
225
|
- pypi: https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl
|
|
221
226
|
- pypi: https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl
|
|
227
|
+
- pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl
|
|
222
228
|
- pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl
|
|
223
229
|
- pypi: https://files.pythonhosted.org/packages/b5/09/29d5cd052f7566a63e5b506fac9c60526e9ecc553825551333e1e18a4858/pillow-11.2.1-cp313-cp313-macosx_11_0_arm64.whl
|
|
224
230
|
- pypi: https://files.pythonhosted.org/packages/fe/39/979e8e21520d4e47a0bbe349e2713c0aac6f3d853d0e5b34d76206c439aa/platformdirs-4.3.8-py3-none-any.whl
|
|
@@ -230,19 +236,19 @@ environments:
|
|
|
230
236
|
- pypi: https://files.pythonhosted.org/packages/b5/69/831ed22b38ff9b4b64b66569f0e5b7b97cf3638346eb95a2147fdb49ad5f/pydantic-2.11.5-py3-none-any.whl
|
|
231
237
|
- pypi: https://files.pythonhosted.org/packages/3a/cc/5999d1eb705a6cefc31f0b4a90e9f7fc400539b1a1030529700cc1b51838/pydantic_core-2.33.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
232
238
|
- pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl
|
|
233
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
234
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
239
|
+
- pypi: https://files.pythonhosted.org/packages/2f/de/afa024cbe022b1b318a3d224125aa24939e99b4ff6f22e0ba639a2eaee47/pytest-8.4.0-py3-none-any.whl
|
|
240
|
+
- pypi: https://files.pythonhosted.org/packages/aa/66/a38138fbf711b2b93592dfd7303bba561f6bc05f85361a0388c105ceb727/pytest_cov-6.2.0-py3-none-any.whl
|
|
235
241
|
- pypi: https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
236
242
|
- pypi: https://files.pythonhosted.org/packages/b0/0a/040342c239e0963c27a370048a812a4f034ef3b62b80910c2f6635216a31/rdkit-2025.3.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
237
243
|
- pypi: https://files.pythonhosted.org/packages/d9/0f/90088510d4758e0ee475ae1fc7f96e7bccd0e31f24107567075482b2fe9e/rdkit_stubs-0.8-py3-none-any.whl
|
|
238
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
239
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
244
|
+
- pypi: https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl
|
|
245
|
+
- pypi: https://files.pythonhosted.org/packages/77/79/d8cec175856ff810a19825d09ce700265f905c643c69f45d2b737e4a470a/ruff-0.11.13-py3-none-macosx_11_0_arm64.whl
|
|
240
246
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
241
247
|
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
|
|
242
248
|
- pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl
|
|
243
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
249
|
+
- pypi: https://files.pythonhosted.org/packages/19/f7/faf9ca901cb502a12bdfadf33d10573b1ee3cb917d3c04e3d6a7c8989f09/stjames-0.0.83-py3-none-any.whl
|
|
244
250
|
- pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl
|
|
245
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
251
|
+
- pypi: https://files.pythonhosted.org/packages/69/e0/552843e0d356fbb5256d21449fa957fa4eff3bbc135a74a691ee70c7c5da/typing_extensions-4.14.0-py3-none-any.whl
|
|
246
252
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
247
253
|
- pypi: https://files.pythonhosted.org/packages/6b/11/cc635220681e93a0183390e26485430ca2c7b5f9d33b15c74c2861cb8091/urllib3-2.4.0-py3-none-any.whl
|
|
248
254
|
- pypi: https://files.pythonhosted.org/packages/f3/40/b1c265d4b2b62b58576588510fc4d1fe60a86319c8de99fd8e9fec617d2c/virtualenv-20.31.2-py3-none-any.whl
|
|
@@ -483,10 +489,10 @@ packages:
|
|
|
483
489
|
version: 2.1.0
|
|
484
490
|
sha256: 9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760
|
|
485
491
|
requires_python: '>=3.8'
|
|
486
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
492
|
+
- pypi: https://files.pythonhosted.org/packages/3c/99/9ed3d52d00f1846679e3aa12e2326ac7044b5e7f90dc822b60115fa533ca/ipython-9.3.0-py3-none-any.whl
|
|
487
493
|
name: ipython
|
|
488
|
-
version: 9.
|
|
489
|
-
sha256:
|
|
494
|
+
version: 9.3.0
|
|
495
|
+
sha256: 1a0b6dd9221a1f5dddf725b57ac0cb6fddc7b5f470576231ae9162b9b3455a04
|
|
490
496
|
requires_dist:
|
|
491
497
|
- colorama ; sys_platform == 'win32'
|
|
492
498
|
- decorator
|
|
@@ -683,51 +689,49 @@ packages:
|
|
|
683
689
|
purls: []
|
|
684
690
|
size: 452635
|
|
685
691
|
timestamp: 1746642113092
|
|
686
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-
|
|
687
|
-
sha256:
|
|
688
|
-
md5:
|
|
692
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda
|
|
693
|
+
sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8
|
|
694
|
+
md5: 1a580f7796c7bf6393fddb8bbbde58dc
|
|
689
695
|
depends:
|
|
690
696
|
- __glibc >=2.17,<3.0.a0
|
|
691
697
|
- libgcc >=13
|
|
692
698
|
constrains:
|
|
693
699
|
- xz 5.8.1.*
|
|
694
|
-
- xz ==5.8.1=*_1
|
|
695
700
|
arch: x86_64
|
|
696
701
|
platform: linux
|
|
697
702
|
license: 0BSD
|
|
698
703
|
purls: []
|
|
699
|
-
size:
|
|
700
|
-
timestamp:
|
|
701
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-
|
|
702
|
-
sha256:
|
|
703
|
-
md5:
|
|
704
|
+
size: 112894
|
|
705
|
+
timestamp: 1749230047870
|
|
706
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda
|
|
707
|
+
sha256: 0cb92a9e026e7bd4842f410a5c5c665c89b2eb97794ffddba519a626b8ce7285
|
|
708
|
+
md5: d6df911d4564d77c4374b02552cb17d1
|
|
704
709
|
depends:
|
|
705
710
|
- __osx >=11.0
|
|
706
711
|
constrains:
|
|
707
712
|
- xz 5.8.1.*
|
|
708
|
-
- xz ==5.8.1=*_1
|
|
709
713
|
arch: arm64
|
|
710
714
|
platform: osx
|
|
711
715
|
license: 0BSD
|
|
712
716
|
purls: []
|
|
713
|
-
size:
|
|
714
|
-
timestamp:
|
|
715
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-
|
|
716
|
-
sha256:
|
|
717
|
-
md5:
|
|
717
|
+
size: 92286
|
|
718
|
+
timestamp: 1749230283517
|
|
719
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda
|
|
720
|
+
sha256: 3aa92d4074d4063f2a162cd8ecb45dccac93e543e565c01a787e16a43501f7ee
|
|
721
|
+
md5: c7e925f37e3b40d893459e625f6a53f1
|
|
718
722
|
depends:
|
|
719
723
|
- __glibc >=2.17,<3.0.a0
|
|
720
|
-
- libgcc
|
|
724
|
+
- libgcc >=13
|
|
721
725
|
arch: x86_64
|
|
722
726
|
platform: linux
|
|
723
727
|
license: BSD-2-Clause
|
|
724
728
|
license_family: BSD
|
|
725
729
|
purls: []
|
|
726
|
-
size:
|
|
727
|
-
timestamp:
|
|
728
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-
|
|
729
|
-
sha256:
|
|
730
|
-
md5:
|
|
730
|
+
size: 91183
|
|
731
|
+
timestamp: 1748393666725
|
|
732
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h5505292_0.conda
|
|
733
|
+
sha256: 0a1875fc1642324ebd6c4ac864604f3f18f57fbcf558a8264f6ced028a3c75b2
|
|
734
|
+
md5: 85ccccb47823dd9f7a99d2c7f530342f
|
|
731
735
|
depends:
|
|
732
736
|
- __osx >=11.0
|
|
733
737
|
arch: arm64
|
|
@@ -735,11 +739,11 @@ packages:
|
|
|
735
739
|
license: BSD-2-Clause
|
|
736
740
|
license_family: BSD
|
|
737
741
|
purls: []
|
|
738
|
-
size:
|
|
739
|
-
timestamp:
|
|
740
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.
|
|
741
|
-
sha256:
|
|
742
|
-
md5:
|
|
742
|
+
size: 71829
|
|
743
|
+
timestamp: 1748393749336
|
|
744
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.1-hee588c1_0.conda
|
|
745
|
+
sha256: cd15ab1b9f0d53507e7ad7a01e52f6756ab3080bf623ab0e438973b6e4dba3c0
|
|
746
|
+
md5: 96a7e36bff29f1d0ddf5b771e0da373a
|
|
743
747
|
depends:
|
|
744
748
|
- __glibc >=2.17,<3.0.a0
|
|
745
749
|
- libgcc >=13
|
|
@@ -748,11 +752,11 @@ packages:
|
|
|
748
752
|
platform: linux
|
|
749
753
|
license: Unlicense
|
|
750
754
|
purls: []
|
|
751
|
-
size:
|
|
752
|
-
timestamp:
|
|
753
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.
|
|
754
|
-
sha256:
|
|
755
|
-
md5:
|
|
755
|
+
size: 919819
|
|
756
|
+
timestamp: 1749232795476
|
|
757
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.50.1-h3f77e49_0.conda
|
|
758
|
+
sha256: f39e22a00396c048dcfcb5d8c9dbedb2d69f06edcd8dba98b87f263eeb6d2049
|
|
759
|
+
md5: 73df23998b27dd6774d03db626d031d3
|
|
756
760
|
depends:
|
|
757
761
|
- __osx >=11.0
|
|
758
762
|
- libzlib >=1.3.1,<2.0a0
|
|
@@ -760,8 +764,8 @@ packages:
|
|
|
760
764
|
platform: osx
|
|
761
765
|
license: Unlicense
|
|
762
766
|
purls: []
|
|
763
|
-
size:
|
|
764
|
-
timestamp:
|
|
767
|
+
size: 901258
|
|
768
|
+
timestamp: 1749232800279
|
|
765
769
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
|
|
766
770
|
sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
|
|
767
771
|
md5: 40b61aab5c7ba9ff276c41cfffe6b80b
|
|
@@ -810,13 +814,19 @@ packages:
|
|
|
810
814
|
requires_dist:
|
|
811
815
|
- traitlets
|
|
812
816
|
requires_python: '>=3.8'
|
|
813
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
817
|
+
- pypi: https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl
|
|
818
|
+
name: more-itertools
|
|
819
|
+
version: 10.7.0
|
|
820
|
+
sha256: d43980384673cb07d2f7d2d918c616b30c659c089ee23953f601d6609c67510e
|
|
821
|
+
requires_python: '>=3.9'
|
|
822
|
+
- pypi: https://files.pythonhosted.org/packages/36/92/79a969b8302cfe316027c88f7dc6fee70129490a370b3f6eb11d777749d0/mypy-1.16.0-cp313-cp313-macosx_11_0_arm64.whl
|
|
814
823
|
name: mypy
|
|
815
|
-
version: 1.
|
|
816
|
-
sha256:
|
|
824
|
+
version: 1.16.0
|
|
825
|
+
sha256: 0b07e107affb9ee6ce1f342c07f51552d126c32cd62955f59a7db94a51ad12c0
|
|
817
826
|
requires_dist:
|
|
818
827
|
- typing-extensions>=4.6.0
|
|
819
828
|
- mypy-extensions>=1.0.0
|
|
829
|
+
- pathspec>=0.9.0
|
|
820
830
|
- tomli>=1.1.0 ; python_full_version < '3.11'
|
|
821
831
|
- psutil>=4.0 ; extra == 'dmypy'
|
|
822
832
|
- setuptools>=50 ; extra == 'mypyc'
|
|
@@ -824,13 +834,14 @@ packages:
|
|
|
824
834
|
- pip ; extra == 'install-types'
|
|
825
835
|
- orjson ; extra == 'faster-cache'
|
|
826
836
|
requires_python: '>=3.9'
|
|
827
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
837
|
+
- pypi: https://files.pythonhosted.org/packages/ec/64/ff75e71c65a0cb6ee737287c7913ea155845a556c64144c65b811afdb9c7/mypy-1.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
|
|
828
838
|
name: mypy
|
|
829
|
-
version: 1.
|
|
830
|
-
sha256:
|
|
839
|
+
version: 1.16.0
|
|
840
|
+
sha256: a7e32297a437cc915599e0578fa6bc68ae6a8dc059c9e009c628e1c47f91495d
|
|
831
841
|
requires_dist:
|
|
832
842
|
- typing-extensions>=4.6.0
|
|
833
843
|
- mypy-extensions>=1.0.0
|
|
844
|
+
- pathspec>=0.9.0
|
|
834
845
|
- tomli>=1.1.0 ; python_full_version < '3.11'
|
|
835
846
|
- psutil>=4.0 ; extra == 'dmypy'
|
|
836
847
|
- setuptools>=50 ; extra == 'mypyc'
|
|
@@ -876,16 +887,16 @@ packages:
|
|
|
876
887
|
version: 1.9.1
|
|
877
888
|
sha256: ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9
|
|
878
889
|
requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*'
|
|
879
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
890
|
+
- pypi: https://files.pythonhosted.org/packages/1c/12/734dce1087eed1875f2297f687e671cfe53a091b6f2f55f0c7241aad041b/numpy-2.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
|
|
880
891
|
name: numpy
|
|
881
|
-
version: 2.
|
|
882
|
-
sha256:
|
|
883
|
-
requires_python: '>=3.
|
|
884
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
892
|
+
version: 2.3.0
|
|
893
|
+
sha256: 87717eb24d4a8a64683b7a4e91ace04e2f5c7c77872f823f02a94feee186168f
|
|
894
|
+
requires_python: '>=3.11'
|
|
895
|
+
- pypi: https://files.pythonhosted.org/packages/e8/95/73ffdb69e5c3f19ec4530f8924c4386e7ba097efc94b9c0aff607178ad94/numpy-2.3.0-cp313-cp313-macosx_11_0_arm64.whl
|
|
885
896
|
name: numpy
|
|
886
|
-
version: 2.
|
|
887
|
-
sha256:
|
|
888
|
-
requires_python: '>=3.
|
|
897
|
+
version: 2.3.0
|
|
898
|
+
sha256: d11fa02f77752d8099573d64e5fe33de3229b6632036ec08f7080f46b6649959
|
|
899
|
+
requires_python: '>=3.11'
|
|
889
900
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_1.conda
|
|
890
901
|
sha256: b4491077c494dbf0b5eaa6d87738c22f2154e9277e5293175ec187634bd808a0
|
|
891
902
|
md5: de356753cfdbffcde5bb1e86e3aa6cd0
|
|
@@ -929,6 +940,11 @@ packages:
|
|
|
929
940
|
- docopt ; extra == 'testing'
|
|
930
941
|
- pytest ; extra == 'testing'
|
|
931
942
|
requires_python: '>=3.6'
|
|
943
|
+
- pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl
|
|
944
|
+
name: pathspec
|
|
945
|
+
version: 0.12.1
|
|
946
|
+
sha256: a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08
|
|
947
|
+
requires_python: '>=3.8'
|
|
932
948
|
- pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl
|
|
933
949
|
name: pexpect
|
|
934
950
|
version: 4.9.0
|
|
@@ -1079,30 +1095,30 @@ packages:
|
|
|
1079
1095
|
requires_dist:
|
|
1080
1096
|
- colorama>=0.4.6 ; extra == 'windows-terminal'
|
|
1081
1097
|
requires_python: '>=3.8'
|
|
1082
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1098
|
+
- pypi: https://files.pythonhosted.org/packages/2f/de/afa024cbe022b1b318a3d224125aa24939e99b4ff6f22e0ba639a2eaee47/pytest-8.4.0-py3-none-any.whl
|
|
1083
1099
|
name: pytest
|
|
1084
|
-
version: 8.
|
|
1085
|
-
sha256:
|
|
1100
|
+
version: 8.4.0
|
|
1101
|
+
sha256: f40f825768ad76c0977cbacdf1fd37c6f7a468e460ea6a0636078f8972d4517e
|
|
1086
1102
|
requires_dist:
|
|
1087
|
-
- colorama ; sys_platform == 'win32'
|
|
1088
|
-
- exceptiongroup>=1
|
|
1089
|
-
- iniconfig
|
|
1090
|
-
- packaging
|
|
1103
|
+
- colorama>=0.4 ; sys_platform == 'win32'
|
|
1104
|
+
- exceptiongroup>=1 ; python_full_version < '3.11'
|
|
1105
|
+
- iniconfig>=1
|
|
1106
|
+
- packaging>=20
|
|
1091
1107
|
- pluggy>=1.5,<2
|
|
1108
|
+
- pygments>=2.7.2
|
|
1092
1109
|
- tomli>=1 ; python_full_version < '3.11'
|
|
1093
1110
|
- argcomplete ; extra == 'dev'
|
|
1094
1111
|
- attrs>=19.2 ; extra == 'dev'
|
|
1095
1112
|
- hypothesis>=3.56 ; extra == 'dev'
|
|
1096
1113
|
- mock ; extra == 'dev'
|
|
1097
|
-
- pygments>=2.7.2 ; extra == 'dev'
|
|
1098
1114
|
- requests ; extra == 'dev'
|
|
1099
1115
|
- setuptools ; extra == 'dev'
|
|
1100
1116
|
- xmlschema ; extra == 'dev'
|
|
1101
|
-
requires_python: '>=3.
|
|
1102
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1117
|
+
requires_python: '>=3.9'
|
|
1118
|
+
- pypi: https://files.pythonhosted.org/packages/aa/66/a38138fbf711b2b93592dfd7303bba561f6bc05f85361a0388c105ceb727/pytest_cov-6.2.0-py3-none-any.whl
|
|
1103
1119
|
name: pytest-cov
|
|
1104
|
-
version: 6.
|
|
1105
|
-
sha256:
|
|
1120
|
+
version: 6.2.0
|
|
1121
|
+
sha256: bd19301caf600ead1169db089ed0ad7b8f2b962214330a696b8c85a0b497b2ff
|
|
1106
1122
|
requires_dist:
|
|
1107
1123
|
- pytest>=4.6
|
|
1108
1124
|
- coverage[toml]>=7.5
|
|
@@ -1232,10 +1248,10 @@ packages:
|
|
|
1232
1248
|
purls: []
|
|
1233
1249
|
size: 252359
|
|
1234
1250
|
timestamp: 1740379663071
|
|
1235
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1251
|
+
- pypi: https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl
|
|
1236
1252
|
name: requests
|
|
1237
|
-
version: 2.32.
|
|
1238
|
-
sha256:
|
|
1253
|
+
version: 2.32.4
|
|
1254
|
+
sha256: 27babd3cda2a6d50b30443204ee89830707d396671944c998b5975b031ac2b2c
|
|
1239
1255
|
requires_dist:
|
|
1240
1256
|
- charset-normalizer>=2,<4
|
|
1241
1257
|
- idna>=2.5,<4
|
|
@@ -1246,25 +1262,25 @@ packages:
|
|
|
1246
1262
|
requires_python: '>=3.8'
|
|
1247
1263
|
- pypi: .
|
|
1248
1264
|
name: rowan-python
|
|
1249
|
-
version: 1.1.
|
|
1250
|
-
sha256:
|
|
1265
|
+
version: 1.1.11
|
|
1266
|
+
sha256: 9ab0219e8354f47e6b4b0c5d60bb17803d91276f36566e73fd70b8838fa6ca8c
|
|
1251
1267
|
requires_dist:
|
|
1252
1268
|
- httpx
|
|
1253
|
-
- stjames>=0.0.
|
|
1269
|
+
- stjames>=0.0.83
|
|
1254
1270
|
- setuptools
|
|
1255
1271
|
- rdkit
|
|
1256
1272
|
- nest-asyncio
|
|
1257
1273
|
requires_python: '>=3.9'
|
|
1258
1274
|
editable: true
|
|
1259
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1275
|
+
- pypi: https://files.pythonhosted.org/packages/75/f0/782e7d681d660eda8c536962920c41309e6dd4ebcea9a2714ed5127d44bd/ruff-0.11.13-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
1260
1276
|
name: ruff
|
|
1261
|
-
version: 0.11.
|
|
1262
|
-
sha256:
|
|
1277
|
+
version: 0.11.13
|
|
1278
|
+
sha256: 4ffbc82d70424b275b089166310448051afdc6e914fdab90e08df66c43bb5ca9
|
|
1263
1279
|
requires_python: '>=3.7'
|
|
1264
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1280
|
+
- pypi: https://files.pythonhosted.org/packages/77/79/d8cec175856ff810a19825d09ce700265f905c643c69f45d2b737e4a470a/ruff-0.11.13-py3-none-macosx_11_0_arm64.whl
|
|
1265
1281
|
name: ruff
|
|
1266
|
-
version: 0.11.
|
|
1267
|
-
sha256:
|
|
1282
|
+
version: 0.11.13
|
|
1283
|
+
sha256: 53b15a9dfdce029c842e9a5aebc3855e9ab7771395979ff85b7c1dedb53ddc2b
|
|
1268
1284
|
requires_python: '>=3.7'
|
|
1269
1285
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
1270
1286
|
name: setuptools
|
|
@@ -1341,41 +1357,44 @@ packages:
|
|
|
1341
1357
|
- pygments ; extra == 'tests'
|
|
1342
1358
|
- littleutils ; extra == 'tests'
|
|
1343
1359
|
- cython ; extra == 'tests'
|
|
1344
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1360
|
+
- pypi: https://files.pythonhosted.org/packages/19/f7/faf9ca901cb502a12bdfadf33d10573b1ee3cb917d3c04e3d6a7c8989f09/stjames-0.0.83-py3-none-any.whl
|
|
1345
1361
|
name: stjames
|
|
1346
|
-
version: 0.0.
|
|
1347
|
-
sha256:
|
|
1362
|
+
version: 0.0.83
|
|
1363
|
+
sha256: c415ad6d1b76527d58a6f4a11e93e614998f93f99f2b8b41ce94cc57f7a98e95
|
|
1348
1364
|
requires_dist:
|
|
1349
1365
|
- pydantic>=2.4
|
|
1350
1366
|
- numpy
|
|
1351
1367
|
- requests
|
|
1352
1368
|
- rdkit
|
|
1369
|
+
- more-itertools
|
|
1353
1370
|
requires_python: '>=3.11'
|
|
1354
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-
|
|
1355
|
-
sha256:
|
|
1356
|
-
md5:
|
|
1371
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda
|
|
1372
|
+
sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1
|
|
1373
|
+
md5: a0116df4f4ed05c303811a837d5b39d8
|
|
1357
1374
|
depends:
|
|
1358
|
-
-
|
|
1359
|
-
-
|
|
1375
|
+
- __glibc >=2.17,<3.0.a0
|
|
1376
|
+
- libgcc >=13
|
|
1377
|
+
- libzlib >=1.3.1,<2.0a0
|
|
1360
1378
|
arch: x86_64
|
|
1361
1379
|
platform: linux
|
|
1362
1380
|
license: TCL
|
|
1363
1381
|
license_family: BSD
|
|
1364
1382
|
purls: []
|
|
1365
|
-
size:
|
|
1366
|
-
timestamp:
|
|
1367
|
-
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-
|
|
1368
|
-
sha256:
|
|
1369
|
-
md5:
|
|
1383
|
+
size: 3285204
|
|
1384
|
+
timestamp: 1748387766691
|
|
1385
|
+
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda
|
|
1386
|
+
sha256: cb86c522576fa95c6db4c878849af0bccfd3264daf0cc40dd18e7f4a7bfced0e
|
|
1387
|
+
md5: 7362396c170252e7b7b0c8fb37fe9c78
|
|
1370
1388
|
depends:
|
|
1371
|
-
-
|
|
1389
|
+
- __osx >=11.0
|
|
1390
|
+
- libzlib >=1.3.1,<2.0a0
|
|
1372
1391
|
arch: arm64
|
|
1373
1392
|
platform: osx
|
|
1374
1393
|
license: TCL
|
|
1375
1394
|
license_family: BSD
|
|
1376
1395
|
purls: []
|
|
1377
|
-
size:
|
|
1378
|
-
timestamp:
|
|
1396
|
+
size: 3125538
|
|
1397
|
+
timestamp: 1748388189063
|
|
1379
1398
|
- pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl
|
|
1380
1399
|
name: traitlets
|
|
1381
1400
|
version: 5.14.3
|
|
@@ -1391,11 +1410,11 @@ packages:
|
|
|
1391
1410
|
- pytest-mypy-testing ; extra == 'test'
|
|
1392
1411
|
- pytest>=7.0,<8.2 ; extra == 'test'
|
|
1393
1412
|
requires_python: '>=3.8'
|
|
1394
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1413
|
+
- pypi: https://files.pythonhosted.org/packages/69/e0/552843e0d356fbb5256d21449fa957fa4eff3bbc135a74a691ee70c7c5da/typing_extensions-4.14.0-py3-none-any.whl
|
|
1395
1414
|
name: typing-extensions
|
|
1396
|
-
version: 4.
|
|
1397
|
-
sha256:
|
|
1398
|
-
requires_python: '>=3.
|
|
1415
|
+
version: 4.14.0
|
|
1416
|
+
sha256: a1514509136dd0b477638fc68d6a91497af5076466ad0fa6c338e44e359944af
|
|
1417
|
+
requires_python: '>=3.9'
|
|
1399
1418
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
1400
1419
|
name: typing-inspection
|
|
1401
1420
|
version: 0.4.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "rowan-python"
|
|
3
|
-
version = "1.1.
|
|
3
|
+
version = "1.1.11"
|
|
4
4
|
description = "Rowan Python Library"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.9"
|
|
@@ -9,7 +9,7 @@ authors = [
|
|
|
9
9
|
]
|
|
10
10
|
dependencies = [
|
|
11
11
|
"httpx",
|
|
12
|
-
"stjames>=0.0.
|
|
12
|
+
"stjames>=0.0.83",
|
|
13
13
|
"setuptools",
|
|
14
14
|
"rdkit",
|
|
15
15
|
"nest-asyncio",
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
from typing import Any
|
|
2
|
+
|
|
3
|
+
import stjames
|
|
4
|
+
|
|
5
|
+
from .utils import api_client
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def submit_protein_cofolding_workflow(
|
|
9
|
+
initial_protein_sequences: list[str],
|
|
10
|
+
initial_smiles_list: list[str] | None = None,
|
|
11
|
+
ligand_binding_affinity_index: int | None = None,
|
|
12
|
+
use_msa_server: bool = True,
|
|
13
|
+
use_potenitals: bool = False,
|
|
14
|
+
name: str = "Cofolding Workflow",
|
|
15
|
+
model: str = stjames.CofoldingModel.BOLTZ_2.value,
|
|
16
|
+
folder_uuid: stjames.UUID | None = None,
|
|
17
|
+
) -> dict[str, Any]:
|
|
18
|
+
workflow_data = {
|
|
19
|
+
"use_msa_server": use_msa_server,
|
|
20
|
+
"use_potentials": use_potenitals,
|
|
21
|
+
"model": model,
|
|
22
|
+
"ligand_binding_affinity_index": ligand_binding_affinity_index,
|
|
23
|
+
"initial_smiles_list": initial_smiles_list,
|
|
24
|
+
"initial_protein_sequences": initial_protein_sequences
|
|
25
|
+
}
|
|
26
|
+
data = {
|
|
27
|
+
"name": name,
|
|
28
|
+
"folder_uuid": folder_uuid,
|
|
29
|
+
"workflow_type": "protein_cofolding",
|
|
30
|
+
"workflow_data": workflow_data,
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
with api_client() as client:
|
|
34
|
+
response = client.post("/workflow", json=data)
|
|
35
|
+
response.raise_for_status()
|
|
36
|
+
return response.json()
|
|
@@ -30,8 +30,9 @@ class Workflow:
|
|
|
30
30
|
elif isinstance(initial_molecule, dict):
|
|
31
31
|
data["initial_molecule"] = initial_molecule
|
|
32
32
|
else:
|
|
33
|
-
raise ValueError(
|
|
34
|
-
|
|
33
|
+
raise ValueError(
|
|
34
|
+
"You must provide either `initial_smiles` or a valid `initial_molecule`."
|
|
35
|
+
)
|
|
35
36
|
|
|
36
37
|
with api_client() as client:
|
|
37
38
|
response = client.post("/workflow", json=data)
|
|
@@ -102,6 +103,7 @@ class Workflow:
|
|
|
102
103
|
with api_client() as client:
|
|
103
104
|
response = client.delete(f"/workflow/{uuid}")
|
|
104
105
|
response.raise_for_status()
|
|
106
|
+
|
|
105
107
|
@classmethod
|
|
106
108
|
def delete_data(cls, uuid: stjames.UUID) -> None:
|
|
107
109
|
with api_client() as client:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|