rowan-python 3.0.1__tar.gz → 3.0.3__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-3.0.1 → rowan_python-3.0.3}/PKG-INFO +1 -1
- {rowan_python-3.0.1 → rowan_python-3.0.3}/docs/index.md +1 -0
- rowan_python-3.0.3/examples/estimate_workflow.py +33 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/webhook.py +3 -1
- {rowan_python-3.0.1 → rowan_python-3.0.3}/pixi.lock +83 -81
- {rowan_python-3.0.1 → rowan_python-3.0.3}/pyproject.toml +1 -1
- rowan_python-3.0.3/rowan/rowan_rdkit/__init__.py +29 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/rowan_rdkit/chem_utils.py +9 -9
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/user.py +1 -1
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/__init__.py +1 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/admet.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/analogue_docking.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/base.py +66 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/basic_calculation.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/batch_docking.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/bde.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/conformer_search.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/descriptors.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/docking.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/double_ended_ts_search.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/electronic_properties.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/fukui.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/hydrogen_bond_donor_acceptor_strength.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/interaction_energy_decomposition.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/ion_mobility.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/irc.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/macropka.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/membrane_permeability.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/msa.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/multistage_optimization.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/nmr.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/pka.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/pose_analysis_md.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/protein_binder_design.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/protein_cofolding.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/protein_md.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/rbfe_graph.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/redox_potential.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/relative_binding_free_energy_perturbation.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/scan.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/solubility.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/solvent_dependent_conformers.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/spin_states.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/strain.py +3 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/tautomer_search.py +3 -0
- rowan_python-3.0.1/rowan/rowan_rdkit/__init__.py +0 -14
- {rowan_python-3.0.1 → rowan_python-3.0.3}/.envrc +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/.github/workflows/build-and-deploy-docs.yml +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/.github/workflows/python-publish.yml +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/.github/workflows/test.yml +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/.gitignore +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/.pre-commit-config.yaml +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/LICENSE +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/README.md +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/docs/images/deciduous-tree-favicon.png +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/docs/rowan_rdkit.md +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/docs/stylesheets/colors.css +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/PROTAC_solubility.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/admet.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/analogue_docking.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/aqueous_solubility.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/basic_calculation.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/basic_calculation_from_json.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/basic_calculation_with_constraint.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/basic_calculation_with_solvent.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/batch_docking.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/bde.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/boltz_paired_msa.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/boltz_single_msa.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/chai_paired_msa.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/chai_single_msa.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/cofolding_screen.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/colabfold_paired_msa.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/colabfold_single_msa.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/conformer_dependent_redox.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/conformers.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/data/1iep_receptorH.pdb +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/data/citalopram_1iep.xyz +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/data/tyk2_ligands.sdf +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/data/tyk2_structure.pdb +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/data/workflow_example.json +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/dcd_download.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/docking_screen.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/double_ended_ts_search.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/electronic_properties.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/fukui_index.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/hydrogen_bond_basicity.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/interaction_energy_decomposition.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/ion_mobility.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/irc.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/macropka.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/membrane_permeability.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/multistage_optimization.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/nmr.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/optimization.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/pdb_download.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/phenol_pka.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/pka.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/pose_analysis_md.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/protein_binder_design.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/protein_cofolding.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/protein_md.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/rbfe_graph.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/redox_potential.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/relative_binding_free_energy_perturbation.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/retrieve_workflow.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/scan.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/solvent_dependent_conformers.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/spin_states.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/strain.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/tautomer.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/examples/template.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/mkdocs.yml +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/__init__.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/calculation.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/config.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/constants.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/folder.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/molecule.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/project.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/protein.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/py.typed +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/types.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/utils.py +0 -0
- {rowan_python-3.0.1 → rowan_python-3.0.3}/rowan/workflows/constants.py +0 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"""Compare dispatch info for different property predictions to decide which to submit."""
|
|
2
|
+
|
|
3
|
+
import rowan
|
|
4
|
+
|
|
5
|
+
folder = rowan.get_folder("examples")
|
|
6
|
+
smiles = "c1ccc(CC(=O)O)cc1" # phenylacetic acid
|
|
7
|
+
|
|
8
|
+
# Create drafts, nothing runs yet
|
|
9
|
+
admet_draft = rowan.submit_admet_workflow(
|
|
10
|
+
initial_smiles=smiles, name="Estimate Workflow - ADMET", folder=folder, is_draft=True
|
|
11
|
+
)
|
|
12
|
+
solubility_draft = rowan.submit_solubility_workflow(
|
|
13
|
+
initial_smiles=smiles, name="Estimate Workflow - Solubility", folder=folder, is_draft=True
|
|
14
|
+
)
|
|
15
|
+
membrane_draft = rowan.submit_membrane_permeability_workflow(
|
|
16
|
+
initial_molecule=smiles,
|
|
17
|
+
name="Estimate Workflow - Membrane Permeability",
|
|
18
|
+
folder=folder,
|
|
19
|
+
is_draft=True,
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
# Check dispatch info for each
|
|
23
|
+
print("ADMET:", admet_draft.dispatch_info())
|
|
24
|
+
print("Solubility:", solubility_draft.dispatch_info())
|
|
25
|
+
print("Membrane:", membrane_draft.dispatch_info())
|
|
26
|
+
|
|
27
|
+
# Pick ADMET, clean up the rest
|
|
28
|
+
solubility_draft.delete()
|
|
29
|
+
membrane_draft.delete()
|
|
30
|
+
admet_draft.submit_draft()
|
|
31
|
+
|
|
32
|
+
result = admet_draft.result()
|
|
33
|
+
print(result)
|
|
@@ -10,11 +10,13 @@ secret = rowan.create_webhook_secret()
|
|
|
10
10
|
# Rotate to a new secret (invalidates the old one)
|
|
11
11
|
# secret = rowan.rotate_webhook_secret()
|
|
12
12
|
|
|
13
|
+
folder = rowan.get_folder("examples")
|
|
13
14
|
oseltamivir = "C1CCOC(=O)C1=C[C@@H](OC(CC)CC)[C@H](NC(C)=O)[C@@H]([NH3+])C1CCC1"
|
|
14
15
|
|
|
15
16
|
workflow = rowan.submit_admet_workflow(
|
|
16
17
|
initial_smiles=oseltamivir,
|
|
17
|
-
name="
|
|
18
|
+
name="Webhook - ADMET",
|
|
19
|
+
folder=folder,
|
|
18
20
|
webhook_url="https://your-server.com/webhook",
|
|
19
21
|
)
|
|
20
22
|
|
|
@@ -22,7 +22,7 @@ environments:
|
|
|
22
22
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb03c661_1.conda
|
|
23
23
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.52.0-hf4e2dac_0.conda
|
|
24
24
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
|
|
25
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.
|
|
25
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.42-h5347b49_0.conda
|
|
26
26
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
|
|
27
27
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
|
|
28
28
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.1-h35e630c_1.conda
|
|
@@ -35,21 +35,21 @@ environments:
|
|
|
35
35
|
- pypi: https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl
|
|
36
36
|
- pypi: https://files.pythonhosted.org/packages/da/42/e921fccf5015463e32a3cf6ee7f980a6ed0f395ceeaa45060b61d86486c2/anyio-4.13.0-py3-none-any.whl
|
|
37
37
|
- pypi: https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl
|
|
38
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
38
|
+
- pypi: https://files.pythonhosted.org/packages/47/5c/032c2d5a07fe4d4855fea851209cca2b6f03ebeb6d4e3afdb3358386a684/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
|
|
39
39
|
- pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl
|
|
40
40
|
- pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl
|
|
41
41
|
- pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl
|
|
42
42
|
- pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl
|
|
43
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
43
|
+
- pypi: https://files.pythonhosted.org/packages/d8/f4/5e52c7319b8087acef603ed6e50dc325c02eaa999355414830468611f13c/more_itertools-11.0.1-py3-none-any.whl
|
|
44
44
|
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
|
|
45
45
|
- pypi: https://files.pythonhosted.org/packages/98/7c/21252050676612625449b4807d6b695b9ce8a7c9e1c197ee6216c8a65c7c/numpy-2.4.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
|
|
46
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
46
|
+
- pypi: https://files.pythonhosted.org/packages/11/8d/d2532ad2a603ca2b93ad9f5135732124e57811d0168155852f37fbce2458/pillow-12.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
|
|
47
47
|
- pypi: https://files.pythonhosted.org/packages/5a/87/b70ad306ebb6f9b585f114d0ac2137d792b48be34d732d60e597c2f8465a/pydantic-2.12.5-py3-none-any.whl
|
|
48
48
|
- pypi: https://files.pythonhosted.org/packages/4c/d2/ef2074dc020dd6e109611a8be4449b98cd25e1b9b8a303c2f0fca2f2bcf7/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
49
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
49
|
+
- pypi: https://files.pythonhosted.org/packages/27/60/41cf00319d2a01946854e634f9a5791b0370c08bffbe4d094b0743213f6c/rdkit-2026.3.1-cp314-cp314-manylinux_2_28_x86_64.whl
|
|
50
50
|
- pypi: https://files.pythonhosted.org/packages/d7/8e/7540e8a2036f79a125c1d2ebadf69ed7901608859186c856fa0388ef4197/requests-2.33.1-py3-none-any.whl
|
|
51
51
|
- pypi: https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl
|
|
52
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
52
|
+
- pypi: https://files.pythonhosted.org/packages/4b/ee/0a6c3ab6fd471d8b948e715994d4036b21c77f24829e313ec48b08c0110e/stjames-0.0.177-py3-none-any.whl
|
|
53
53
|
- pypi: https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl
|
|
54
54
|
- pypi: https://files.pythonhosted.org/packages/dc/9b/47798a6c91d8bdb567fe2698fe81e0c6b7cb7ef4d13da4114b41d239f65d/typing_inspection-0.4.2-py3-none-any.whl
|
|
55
55
|
- pypi: https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl
|
|
@@ -75,21 +75,21 @@ environments:
|
|
|
75
75
|
- pypi: https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl
|
|
76
76
|
- pypi: https://files.pythonhosted.org/packages/da/42/e921fccf5015463e32a3cf6ee7f980a6ed0f395ceeaa45060b61d86486c2/anyio-4.13.0-py3-none-any.whl
|
|
77
77
|
- pypi: https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl
|
|
78
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
78
|
+
- pypi: https://files.pythonhosted.org/packages/97/c8/c67cb8c70e19ef1960b97b22ed2a1567711de46c4ddf19799923adc836c2/charset_normalizer-3.4.7-cp314-cp314-macosx_10_15_universal2.whl
|
|
79
79
|
- pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl
|
|
80
80
|
- pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl
|
|
81
81
|
- pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl
|
|
82
82
|
- pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl
|
|
83
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
83
|
+
- pypi: https://files.pythonhosted.org/packages/d8/f4/5e52c7319b8087acef603ed6e50dc325c02eaa999355414830468611f13c/more_itertools-11.0.1-py3-none-any.whl
|
|
84
84
|
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
|
|
85
85
|
- pypi: https://files.pythonhosted.org/packages/4c/39/8a320264a84404c74cc7e79715de85d6130fa07a0898f67fb5cd5bd79908/numpy-2.4.4-cp314-cp314-macosx_11_0_arm64.whl
|
|
86
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
86
|
+
- pypi: https://files.pythonhosted.org/packages/ba/8c/1a9e46228571de18f8e28f16fabdfc20212a5d019f3e3303452b3f0a580d/pillow-12.2.0-cp314-cp314-macosx_11_0_arm64.whl
|
|
87
87
|
- pypi: https://files.pythonhosted.org/packages/5a/87/b70ad306ebb6f9b585f114d0ac2137d792b48be34d732d60e597c2f8465a/pydantic-2.12.5-py3-none-any.whl
|
|
88
88
|
- pypi: https://files.pythonhosted.org/packages/74/1a/145646e5687e8d9a1e8d09acb278c8535ebe9e972e1f162ed338a622f193/pydantic_core-2.41.5-cp314-cp314-macosx_11_0_arm64.whl
|
|
89
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
89
|
+
- pypi: https://files.pythonhosted.org/packages/6a/a4/c05a31806eaf366af246903230fe441cef8b7949cc4592656025ac8975e6/rdkit-2026.3.1-cp314-cp314-macosx_11_0_arm64.whl
|
|
90
90
|
- pypi: https://files.pythonhosted.org/packages/d7/8e/7540e8a2036f79a125c1d2ebadf69ed7901608859186c856fa0388ef4197/requests-2.33.1-py3-none-any.whl
|
|
91
91
|
- pypi: https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl
|
|
92
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
92
|
+
- pypi: https://files.pythonhosted.org/packages/4b/ee/0a6c3ab6fd471d8b948e715994d4036b21c77f24829e313ec48b08c0110e/stjames-0.0.177-py3-none-any.whl
|
|
93
93
|
- pypi: https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl
|
|
94
94
|
- pypi: https://files.pythonhosted.org/packages/dc/9b/47798a6c91d8bdb567fe2698fe81e0c6b7cb7ef4d13da4114b41d239f65d/typing_inspection-0.4.2-py3-none-any.whl
|
|
95
95
|
- pypi: https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl
|
|
@@ -116,7 +116,7 @@ environments:
|
|
|
116
116
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb03c661_1.conda
|
|
117
117
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.52.0-hf4e2dac_0.conda
|
|
118
118
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
|
|
119
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.
|
|
119
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.42-h5347b49_0.conda
|
|
120
120
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
|
|
121
121
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
|
|
122
122
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.1-h35e630c_1.conda
|
|
@@ -133,8 +133,8 @@ environments:
|
|
|
133
133
|
- pypi: https://files.pythonhosted.org/packages/af/75/be12ba31a6eb20dccef2320cd8ccb3f7d9013b68ba4c70156259fee9e409/backrefs-6.2-py314-none-any.whl
|
|
134
134
|
- pypi: https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl
|
|
135
135
|
- pypi: https://files.pythonhosted.org/packages/db/3c/33bac158f8ab7f89b2e59426d5fe2e4f63f7ed25df84c036890172b412b5/cfgv-3.5.0-py2.py3-none-any.whl
|
|
136
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
137
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
136
|
+
- pypi: https://files.pythonhosted.org/packages/47/5c/032c2d5a07fe4d4855fea851209cca2b6f03ebeb6d4e3afdb3358386a684/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
|
|
137
|
+
- pypi: https://files.pythonhosted.org/packages/e4/20/71885d8b97d4f3dde17b1fdb92dbd4908b00541c5a3379787137285f602e/click-8.3.2-py3-none-any.whl
|
|
138
138
|
- pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl
|
|
139
139
|
- pypi: https://files.pythonhosted.org/packages/22/e5/06b1f88f42a5a99df42ce61208bdec3bddb3d261412874280a19796fc09c/coverage-7.13.5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
|
|
140
140
|
- pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl
|
|
@@ -166,8 +166,8 @@ environments:
|
|
|
166
166
|
- pypi: https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl
|
|
167
167
|
- pypi: https://files.pythonhosted.org/packages/04/41/1cf02e3df279d2dd846a1bf235a928254eba9006dd22b4a14caa71aed0f7/mkdocstrings-1.0.3-py3-none-any.whl
|
|
168
168
|
- pypi: https://files.pythonhosted.org/packages/32/28/79f0f8de97cce916d5ae88a7bee1ad724855e83e6019c0b4d5b3fabc80f3/mkdocstrings_python-2.0.3-py3-none-any.whl
|
|
169
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
170
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
169
|
+
- pypi: https://files.pythonhosted.org/packages/d8/f4/5e52c7319b8087acef603ed6e50dc325c02eaa999355414830468611f13c/more_itertools-11.0.1-py3-none-any.whl
|
|
170
|
+
- pypi: https://files.pythonhosted.org/packages/6b/8d/93491ff7b79419edc7eabf95cb3b3f7490e2e574b2855c7c7e7394ff933f/mypy-1.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
|
|
171
171
|
- pypi: https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl
|
|
172
172
|
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
|
|
173
173
|
- pypi: https://files.pythonhosted.org/packages/88/b2/d0896bdcdc8d28a7fc5717c305f1a861c26e18c05047949fb371034d98bd/nodeenv-1.10.0-py2.py3-none-any.whl
|
|
@@ -177,7 +177,7 @@ environments:
|
|
|
177
177
|
- pypi: https://files.pythonhosted.org/packages/b6/61/fae042894f4296ec49e3f193aff5d7c18440da9e48102c3315e1bc4519a7/parso-0.8.6-py2.py3-none-any.whl
|
|
178
178
|
- pypi: https://files.pythonhosted.org/packages/ef/3c/2c197d226f9ea224a9ab8d197933f9da0ae0aac5b6e0f884e2b8d9c8e9f7/pathspec-1.0.4-py3-none-any.whl
|
|
179
179
|
- pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl
|
|
180
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
180
|
+
- pypi: https://files.pythonhosted.org/packages/11/8d/d2532ad2a603ca2b93ad9f5135732124e57811d0168155852f37fbce2458/pillow-12.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
|
|
181
181
|
- pypi: https://files.pythonhosted.org/packages/63/d7/97f7e3a6abb67d8080dd406fd4df842c2be0efaf712d1c899c32a075027c/platformdirs-4.9.4-py3-none-any.whl
|
|
182
182
|
- pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl
|
|
183
183
|
- pypi: https://files.pythonhosted.org/packages/5d/19/fd3ef348460c80af7bb4669ea7926651d1f95c23ff2df18b9d24bab4f3fa/pre_commit-4.5.1-py2.py3-none-any.whl
|
|
@@ -195,14 +195,14 @@ environments:
|
|
|
195
195
|
- pypi: https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl
|
|
196
196
|
- pypi: https://files.pythonhosted.org/packages/88/f9/16491d7ed2a919954993e48aa941b200f38040928474c9e85ea9e64222c3/pyyaml-6.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
|
|
197
197
|
- pypi: https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl
|
|
198
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
198
|
+
- pypi: https://files.pythonhosted.org/packages/27/60/41cf00319d2a01946854e634f9a5791b0370c08bffbe4d094b0743213f6c/rdkit-2026.3.1-cp314-cp314-manylinux_2_28_x86_64.whl
|
|
199
199
|
- pypi: https://files.pythonhosted.org/packages/d9/0f/90088510d4758e0ee475ae1fc7f96e7bccd0e31f24107567075482b2fe9e/rdkit_stubs-0.8-py3-none-any.whl
|
|
200
200
|
- pypi: https://files.pythonhosted.org/packages/d7/8e/7540e8a2036f79a125c1d2ebadf69ed7901608859186c856fa0388ef4197/requests-2.33.1-py3-none-any.whl
|
|
201
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
201
|
+
- pypi: https://files.pythonhosted.org/packages/ff/6b/a1548ac378a78332a4c3dcf4a134c2475a36d2a22ddfa272acd574140b50/ruff-0.15.9-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
202
202
|
- pypi: https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl
|
|
203
203
|
- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
|
|
204
204
|
- pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl
|
|
205
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
205
|
+
- pypi: https://files.pythonhosted.org/packages/4b/ee/0a6c3ab6fd471d8b948e715994d4036b21c77f24829e313ec48b08c0110e/stjames-0.0.177-py3-none-any.whl
|
|
206
206
|
- pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl
|
|
207
207
|
- pypi: https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl
|
|
208
208
|
- pypi: https://files.pythonhosted.org/packages/dc/9b/47798a6c91d8bdb567fe2698fe81e0c6b7cb7ef4d13da4114b41d239f65d/typing_inspection-0.4.2-py3-none-any.whl
|
|
@@ -236,8 +236,8 @@ environments:
|
|
|
236
236
|
- pypi: https://files.pythonhosted.org/packages/af/75/be12ba31a6eb20dccef2320cd8ccb3f7d9013b68ba4c70156259fee9e409/backrefs-6.2-py314-none-any.whl
|
|
237
237
|
- pypi: https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl
|
|
238
238
|
- pypi: https://files.pythonhosted.org/packages/db/3c/33bac158f8ab7f89b2e59426d5fe2e4f63f7ed25df84c036890172b412b5/cfgv-3.5.0-py2.py3-none-any.whl
|
|
239
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
240
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
239
|
+
- pypi: https://files.pythonhosted.org/packages/97/c8/c67cb8c70e19ef1960b97b22ed2a1567711de46c4ddf19799923adc836c2/charset_normalizer-3.4.7-cp314-cp314-macosx_10_15_universal2.whl
|
|
240
|
+
- pypi: https://files.pythonhosted.org/packages/e4/20/71885d8b97d4f3dde17b1fdb92dbd4908b00541c5a3379787137285f602e/click-8.3.2-py3-none-any.whl
|
|
241
241
|
- pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl
|
|
242
242
|
- pypi: https://files.pythonhosted.org/packages/e2/3e/51dff36d99ae14639a133d9b164d63e628532e2974d8b1edb99dd1ebc733/coverage-7.13.5-cp314-cp314-macosx_11_0_arm64.whl
|
|
243
243
|
- pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl
|
|
@@ -269,8 +269,8 @@ environments:
|
|
|
269
269
|
- pypi: https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl
|
|
270
270
|
- pypi: https://files.pythonhosted.org/packages/04/41/1cf02e3df279d2dd846a1bf235a928254eba9006dd22b4a14caa71aed0f7/mkdocstrings-1.0.3-py3-none-any.whl
|
|
271
271
|
- pypi: https://files.pythonhosted.org/packages/32/28/79f0f8de97cce916d5ae88a7bee1ad724855e83e6019c0b4d5b3fabc80f3/mkdocstrings_python-2.0.3-py3-none-any.whl
|
|
272
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
273
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
272
|
+
- pypi: https://files.pythonhosted.org/packages/d8/f4/5e52c7319b8087acef603ed6e50dc325c02eaa999355414830468611f13c/more_itertools-11.0.1-py3-none-any.whl
|
|
273
|
+
- pypi: https://files.pythonhosted.org/packages/7d/c5/5fe9d8a729dd9605064691816243ae6c49fde0bd28f6e5e17f6a24203c43/mypy-1.20.0-cp314-cp314-macosx_11_0_arm64.whl
|
|
274
274
|
- pypi: https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl
|
|
275
275
|
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
|
|
276
276
|
- pypi: https://files.pythonhosted.org/packages/88/b2/d0896bdcdc8d28a7fc5717c305f1a861c26e18c05047949fb371034d98bd/nodeenv-1.10.0-py2.py3-none-any.whl
|
|
@@ -280,7 +280,7 @@ environments:
|
|
|
280
280
|
- pypi: https://files.pythonhosted.org/packages/b6/61/fae042894f4296ec49e3f193aff5d7c18440da9e48102c3315e1bc4519a7/parso-0.8.6-py2.py3-none-any.whl
|
|
281
281
|
- pypi: https://files.pythonhosted.org/packages/ef/3c/2c197d226f9ea224a9ab8d197933f9da0ae0aac5b6e0f884e2b8d9c8e9f7/pathspec-1.0.4-py3-none-any.whl
|
|
282
282
|
- pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl
|
|
283
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
283
|
+
- pypi: https://files.pythonhosted.org/packages/ba/8c/1a9e46228571de18f8e28f16fabdfc20212a5d019f3e3303452b3f0a580d/pillow-12.2.0-cp314-cp314-macosx_11_0_arm64.whl
|
|
284
284
|
- pypi: https://files.pythonhosted.org/packages/63/d7/97f7e3a6abb67d8080dd406fd4df842c2be0efaf712d1c899c32a075027c/platformdirs-4.9.4-py3-none-any.whl
|
|
285
285
|
- pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl
|
|
286
286
|
- pypi: https://files.pythonhosted.org/packages/5d/19/fd3ef348460c80af7bb4669ea7926651d1f95c23ff2df18b9d24bab4f3fa/pre_commit-4.5.1-py2.py3-none-any.whl
|
|
@@ -298,14 +298,14 @@ environments:
|
|
|
298
298
|
- pypi: https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl
|
|
299
299
|
- pypi: https://files.pythonhosted.org/packages/bd/9c/4d95bb87eb2063d20db7b60faa3840c1b18025517ae857371c4dd55a6b3a/pyyaml-6.0.3-cp314-cp314-macosx_11_0_arm64.whl
|
|
300
300
|
- pypi: https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl
|
|
301
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
301
|
+
- pypi: https://files.pythonhosted.org/packages/6a/a4/c05a31806eaf366af246903230fe441cef8b7949cc4592656025ac8975e6/rdkit-2026.3.1-cp314-cp314-macosx_11_0_arm64.whl
|
|
302
302
|
- pypi: https://files.pythonhosted.org/packages/d9/0f/90088510d4758e0ee475ae1fc7f96e7bccd0e31f24107567075482b2fe9e/rdkit_stubs-0.8-py3-none-any.whl
|
|
303
303
|
- pypi: https://files.pythonhosted.org/packages/d7/8e/7540e8a2036f79a125c1d2ebadf69ed7901608859186c856fa0388ef4197/requests-2.33.1-py3-none-any.whl
|
|
304
|
-
- pypi: https://files.pythonhosted.org/packages/ca/
|
|
304
|
+
- pypi: https://files.pythonhosted.org/packages/ca/25/de55f52ab5535d12e7aaba1de37a84be6179fb20bddcbe71ec091b4a3243/ruff-0.15.9-py3-none-macosx_11_0_arm64.whl
|
|
305
305
|
- pypi: https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl
|
|
306
306
|
- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
|
|
307
307
|
- pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl
|
|
308
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
308
|
+
- pypi: https://files.pythonhosted.org/packages/4b/ee/0a6c3ab6fd471d8b948e715994d4036b21c77f24829e313ec48b08c0110e/stjames-0.0.177-py3-none-any.whl
|
|
309
309
|
- pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl
|
|
310
310
|
- pypi: https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl
|
|
311
311
|
- pypi: https://files.pythonhosted.org/packages/dc/9b/47798a6c91d8bdb567fe2698fe81e0c6b7cb7ef4d13da4114b41d239f65d/typing_inspection-0.4.2-py3-none-any.whl
|
|
@@ -419,20 +419,20 @@ packages:
|
|
|
419
419
|
version: 3.5.0
|
|
420
420
|
sha256: a8dc6b26ad22ff227d2634a65cb388215ce6cc96bbcc5cfde7641ae87e8dacc0
|
|
421
421
|
requires_python: '>=3.10'
|
|
422
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
422
|
+
- pypi: https://files.pythonhosted.org/packages/47/5c/032c2d5a07fe4d4855fea851209cca2b6f03ebeb6d4e3afdb3358386a684/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
|
|
423
423
|
name: charset-normalizer
|
|
424
|
-
version: 3.4.
|
|
425
|
-
sha256:
|
|
424
|
+
version: 3.4.7
|
|
425
|
+
sha256: bd6c2a1c7573c64738d716488d2cdd3c00e340e4835707d8fdb8dc1a66ef164e
|
|
426
426
|
requires_python: '>=3.7'
|
|
427
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
427
|
+
- pypi: https://files.pythonhosted.org/packages/97/c8/c67cb8c70e19ef1960b97b22ed2a1567711de46c4ddf19799923adc836c2/charset_normalizer-3.4.7-cp314-cp314-macosx_10_15_universal2.whl
|
|
428
428
|
name: charset-normalizer
|
|
429
|
-
version: 3.4.
|
|
430
|
-
sha256:
|
|
429
|
+
version: 3.4.7
|
|
430
|
+
sha256: c36c333c39be2dbca264d7803333c896ab8fa7d4d6f0ab7edb7dfd7aea6e98c0
|
|
431
431
|
requires_python: '>=3.7'
|
|
432
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
432
|
+
- pypi: https://files.pythonhosted.org/packages/e4/20/71885d8b97d4f3dde17b1fdb92dbd4908b00541c5a3379787137285f602e/click-8.3.2-py3-none-any.whl
|
|
433
433
|
name: click
|
|
434
|
-
version: 8.3.
|
|
435
|
-
sha256:
|
|
434
|
+
version: 8.3.2
|
|
435
|
+
sha256: 1924d2c27c5653561cd2cae4548d1406039cb79b858b747cfea24924bbc1616d
|
|
436
436
|
requires_dist:
|
|
437
437
|
- colorama ; sys_platform == 'win32'
|
|
438
438
|
requires_python: '>=3.10'
|
|
@@ -861,17 +861,17 @@ packages:
|
|
|
861
861
|
purls: []
|
|
862
862
|
size: 5852330
|
|
863
863
|
timestamp: 1771378262446
|
|
864
|
-
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.
|
|
865
|
-
sha256:
|
|
866
|
-
md5:
|
|
864
|
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.42-h5347b49_0.conda
|
|
865
|
+
sha256: bc1b08c92626c91500fd9f26f2c797f3eb153b627d53e9c13cd167f1e12b2829
|
|
866
|
+
md5: 38ffe67b78c9d4de527be8315e5ada2c
|
|
867
867
|
depends:
|
|
868
868
|
- __glibc >=2.17,<3.0.a0
|
|
869
869
|
- libgcc >=14
|
|
870
870
|
license: BSD-3-Clause
|
|
871
871
|
license_family: BSD
|
|
872
872
|
purls: []
|
|
873
|
-
size:
|
|
874
|
-
timestamp:
|
|
873
|
+
size: 40297
|
|
874
|
+
timestamp: 1775052476770
|
|
875
875
|
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
|
|
876
876
|
sha256: 55044c403570f0dc26e6364de4dc5368e5f3fc7ff103e867c487e2b5ab2bcda9
|
|
877
877
|
md5: d87ff7921124eccd67248aa483c23fec
|
|
@@ -1047,43 +1047,45 @@ packages:
|
|
|
1047
1047
|
- griffelib>=2.0
|
|
1048
1048
|
- typing-extensions>=4.0 ; python_full_version < '3.11'
|
|
1049
1049
|
requires_python: '>=3.10'
|
|
1050
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1050
|
+
- pypi: https://files.pythonhosted.org/packages/d8/f4/5e52c7319b8087acef603ed6e50dc325c02eaa999355414830468611f13c/more_itertools-11.0.1-py3-none-any.whl
|
|
1051
1051
|
name: more-itertools
|
|
1052
|
-
version:
|
|
1053
|
-
sha256:
|
|
1054
|
-
requires_python: '>=3.
|
|
1055
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1052
|
+
version: 11.0.1
|
|
1053
|
+
sha256: eaf287826069452a8f61026c597eae2428b2d1ba2859083abbf240b46842ce6d
|
|
1054
|
+
requires_python: '>=3.10'
|
|
1055
|
+
- pypi: https://files.pythonhosted.org/packages/6b/8d/93491ff7b79419edc7eabf95cb3b3f7490e2e574b2855c7c7e7394ff933f/mypy-1.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
|
|
1056
1056
|
name: mypy
|
|
1057
|
-
version: 1.
|
|
1058
|
-
sha256:
|
|
1057
|
+
version: 1.20.0
|
|
1058
|
+
sha256: 7d3243c406773185144527f83be0e0aefc7bf4601b0b2b956665608bf7c98a83
|
|
1059
1059
|
requires_dist:
|
|
1060
1060
|
- typing-extensions>=4.6.0
|
|
1061
1061
|
- mypy-extensions>=1.0.0
|
|
1062
|
-
- pathspec>=0.
|
|
1062
|
+
- pathspec>=1.0.0
|
|
1063
1063
|
- tomli>=1.1.0 ; python_full_version < '3.11'
|
|
1064
|
-
- librt>=0.
|
|
1064
|
+
- librt>=0.8.0 ; platform_python_implementation != 'PyPy'
|
|
1065
1065
|
- psutil>=4.0 ; extra == 'dmypy'
|
|
1066
1066
|
- setuptools>=50 ; extra == 'mypyc'
|
|
1067
1067
|
- lxml ; extra == 'reports'
|
|
1068
1068
|
- pip ; extra == 'install-types'
|
|
1069
1069
|
- orjson ; extra == 'faster-cache'
|
|
1070
|
-
|
|
1071
|
-
|
|
1070
|
+
- ast-serialize>=0.1.1,<1.0.0 ; extra == 'native-parser'
|
|
1071
|
+
requires_python: '>=3.10'
|
|
1072
|
+
- pypi: https://files.pythonhosted.org/packages/7d/c5/5fe9d8a729dd9605064691816243ae6c49fde0bd28f6e5e17f6a24203c43/mypy-1.20.0-cp314-cp314-macosx_11_0_arm64.whl
|
|
1072
1073
|
name: mypy
|
|
1073
|
-
version: 1.
|
|
1074
|
-
sha256:
|
|
1074
|
+
version: 1.20.0
|
|
1075
|
+
sha256: 31b5dbb55293c1bd27c0fc813a0d2bb5ceef9d65ac5afa2e58f829dab7921fd5
|
|
1075
1076
|
requires_dist:
|
|
1076
1077
|
- typing-extensions>=4.6.0
|
|
1077
1078
|
- mypy-extensions>=1.0.0
|
|
1078
|
-
- pathspec>=0.
|
|
1079
|
+
- pathspec>=1.0.0
|
|
1079
1080
|
- tomli>=1.1.0 ; python_full_version < '3.11'
|
|
1080
|
-
- librt>=0.
|
|
1081
|
+
- librt>=0.8.0 ; platform_python_implementation != 'PyPy'
|
|
1081
1082
|
- psutil>=4.0 ; extra == 'dmypy'
|
|
1082
1083
|
- setuptools>=50 ; extra == 'mypyc'
|
|
1083
1084
|
- lxml ; extra == 'reports'
|
|
1084
1085
|
- pip ; extra == 'install-types'
|
|
1085
1086
|
- orjson ; extra == 'faster-cache'
|
|
1086
|
-
|
|
1087
|
+
- ast-serialize>=0.1.1,<1.0.0 ; extra == 'native-parser'
|
|
1088
|
+
requires_python: '>=3.10'
|
|
1087
1089
|
- pypi: https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl
|
|
1088
1090
|
name: mypy-extensions
|
|
1089
1091
|
version: 1.1.0
|
|
@@ -1192,10 +1194,10 @@ packages:
|
|
|
1192
1194
|
sha256: 7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523
|
|
1193
1195
|
requires_dist:
|
|
1194
1196
|
- ptyprocess>=0.5
|
|
1195
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1197
|
+
- pypi: https://files.pythonhosted.org/packages/11/8d/d2532ad2a603ca2b93ad9f5135732124e57811d0168155852f37fbce2458/pillow-12.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
|
|
1196
1198
|
name: pillow
|
|
1197
|
-
version: 12.
|
|
1198
|
-
sha256:
|
|
1199
|
+
version: 12.2.0
|
|
1200
|
+
sha256: 4bfd07bc812fbd20395212969e41931001fd59eb55a60658b0e5710872e95286
|
|
1199
1201
|
requires_dist:
|
|
1200
1202
|
- furo ; extra == 'docs'
|
|
1201
1203
|
- olefile ; extra == 'docs'
|
|
@@ -1224,10 +1226,10 @@ packages:
|
|
|
1224
1226
|
- trove-classifiers>=2024.10.12 ; extra == 'tests'
|
|
1225
1227
|
- defusedxml ; extra == 'xmp'
|
|
1226
1228
|
requires_python: '>=3.10'
|
|
1227
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1229
|
+
- pypi: https://files.pythonhosted.org/packages/ba/8c/1a9e46228571de18f8e28f16fabdfc20212a5d019f3e3303452b3f0a580d/pillow-12.2.0-cp314-cp314-macosx_11_0_arm64.whl
|
|
1228
1230
|
name: pillow
|
|
1229
|
-
version: 12.
|
|
1230
|
-
sha256:
|
|
1231
|
+
version: 12.2.0
|
|
1232
|
+
sha256: 80b2da48193b2f33ed0c32c38140f9d3186583ce7d516526d462645fd98660ae
|
|
1231
1233
|
requires_dist:
|
|
1232
1234
|
- furo ; extra == 'docs'
|
|
1233
1235
|
- olefile ; extra == 'docs'
|
|
@@ -1486,17 +1488,17 @@ packages:
|
|
|
1486
1488
|
requires_dist:
|
|
1487
1489
|
- pyyaml
|
|
1488
1490
|
requires_python: '>=3.9'
|
|
1489
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1491
|
+
- pypi: https://files.pythonhosted.org/packages/27/60/41cf00319d2a01946854e634f9a5791b0370c08bffbe4d094b0743213f6c/rdkit-2026.3.1-cp314-cp314-manylinux_2_28_x86_64.whl
|
|
1490
1492
|
name: rdkit
|
|
1491
|
-
version:
|
|
1492
|
-
sha256:
|
|
1493
|
+
version: 2026.3.1
|
|
1494
|
+
sha256: 53a0718228697c3ebc746386a658258d910b2a47ac75c37408902c3321d69cd2
|
|
1493
1495
|
requires_dist:
|
|
1494
1496
|
- numpy
|
|
1495
1497
|
- pillow
|
|
1496
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1498
|
+
- pypi: https://files.pythonhosted.org/packages/6a/a4/c05a31806eaf366af246903230fe441cef8b7949cc4592656025ac8975e6/rdkit-2026.3.1-cp314-cp314-macosx_11_0_arm64.whl
|
|
1497
1499
|
name: rdkit
|
|
1498
|
-
version:
|
|
1499
|
-
sha256:
|
|
1500
|
+
version: 2026.3.1
|
|
1501
|
+
sha256: 7c63c1bda78f07ac38b050b9f84c040981c64567678ec3f3213b3296b63af1a0
|
|
1500
1502
|
requires_dist:
|
|
1501
1503
|
- numpy
|
|
1502
1504
|
- pillow
|
|
@@ -1542,8 +1544,8 @@ packages:
|
|
|
1542
1544
|
requires_python: '>=3.10'
|
|
1543
1545
|
- pypi: ./
|
|
1544
1546
|
name: rowan-python
|
|
1545
|
-
version: 3.0.
|
|
1546
|
-
sha256:
|
|
1547
|
+
version: 3.0.3
|
|
1548
|
+
sha256: 015cea3d149853d1d5cd804489a8f29ec98a9abd39784b3be48ffda2e91ccb2b
|
|
1547
1549
|
requires_dist:
|
|
1548
1550
|
- httpx
|
|
1549
1551
|
- stjames>=0.0.174
|
|
@@ -1551,15 +1553,15 @@ packages:
|
|
|
1551
1553
|
- rdkit
|
|
1552
1554
|
- nest-asyncio
|
|
1553
1555
|
requires_python: '>=3.12'
|
|
1554
|
-
- pypi: https://files.pythonhosted.org/packages/ca/
|
|
1556
|
+
- pypi: https://files.pythonhosted.org/packages/ca/25/de55f52ab5535d12e7aaba1de37a84be6179fb20bddcbe71ec091b4a3243/ruff-0.15.9-py3-none-macosx_11_0_arm64.whl
|
|
1555
1557
|
name: ruff
|
|
1556
|
-
version: 0.15.
|
|
1557
|
-
sha256:
|
|
1558
|
+
version: 0.15.9
|
|
1559
|
+
sha256: eaf05aad70ca5b5a0a4b0e080df3a6b699803916d88f006efd1f5b46302daab8
|
|
1558
1560
|
requires_python: '>=3.7'
|
|
1559
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1561
|
+
- pypi: https://files.pythonhosted.org/packages/ff/6b/a1548ac378a78332a4c3dcf4a134c2475a36d2a22ddfa272acd574140b50/ruff-0.15.9-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
1560
1562
|
name: ruff
|
|
1561
|
-
version: 0.15.
|
|
1562
|
-
sha256:
|
|
1563
|
+
version: 0.15.9
|
|
1564
|
+
sha256: 2b0c7c341f68adb01c488c3b7d4b49aa8ea97409eae6462d860a79cf55f431b6
|
|
1563
1565
|
requires_python: '>=3.7'
|
|
1564
1566
|
- pypi: https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl
|
|
1565
1567
|
name: setuptools
|
|
@@ -1635,10 +1637,10 @@ packages:
|
|
|
1635
1637
|
- pygments ; extra == 'tests'
|
|
1636
1638
|
- littleutils ; extra == 'tests'
|
|
1637
1639
|
- cython ; extra == 'tests'
|
|
1638
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1640
|
+
- pypi: https://files.pythonhosted.org/packages/4b/ee/0a6c3ab6fd471d8b948e715994d4036b21c77f24829e313ec48b08c0110e/stjames-0.0.177-py3-none-any.whl
|
|
1639
1641
|
name: stjames
|
|
1640
|
-
version: 0.0.
|
|
1641
|
-
sha256:
|
|
1642
|
+
version: 0.0.177
|
|
1643
|
+
sha256: 1693d62344646559cbb8a0679842adf45eae455714f838e801a67c2c8fecd836
|
|
1642
1644
|
requires_dist:
|
|
1643
1645
|
- pydantic>=2.4
|
|
1644
1646
|
- numpy
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from .chem_utils import (
|
|
2
|
+
batch_charges,
|
|
3
|
+
batch_conformers,
|
|
4
|
+
batch_energy,
|
|
5
|
+
batch_optimize,
|
|
6
|
+
batch_pka,
|
|
7
|
+
batch_tautomers,
|
|
8
|
+
run_charges,
|
|
9
|
+
run_conformers,
|
|
10
|
+
run_energy,
|
|
11
|
+
run_optimize,
|
|
12
|
+
run_pka,
|
|
13
|
+
run_tautomers,
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
__all__ = [
|
|
17
|
+
"batch_charges",
|
|
18
|
+
"batch_conformers",
|
|
19
|
+
"batch_energy",
|
|
20
|
+
"batch_optimize",
|
|
21
|
+
"batch_pka",
|
|
22
|
+
"batch_tautomers",
|
|
23
|
+
"run_charges",
|
|
24
|
+
"run_conformers",
|
|
25
|
+
"run_energy",
|
|
26
|
+
"run_optimize",
|
|
27
|
+
"run_pka",
|
|
28
|
+
"run_tautomers",
|
|
29
|
+
]
|
|
@@ -412,7 +412,7 @@ def run_energy(
|
|
|
412
412
|
:param timeout: time in seconds before the Workflow times out
|
|
413
413
|
:param name: name for the job
|
|
414
414
|
:param folder_uuid: folder UUID
|
|
415
|
-
:raises
|
|
415
|
+
:raises MethodTooSlowError: if the method is invalid
|
|
416
416
|
:returns: dictionary with the energy in Hartree and the conformer index
|
|
417
417
|
"""
|
|
418
418
|
return asyncio.run(_single_energy(mol, method, engine, mode, timeout, name, folder_uuid))
|
|
@@ -439,7 +439,7 @@ def batch_energy(
|
|
|
439
439
|
:param timeout: time in seconds before the Workflow times out
|
|
440
440
|
:param name: name for the job
|
|
441
441
|
:param folder_uuid: folder UUID
|
|
442
|
-
:raises
|
|
442
|
+
:raises MethodTooSlowError: if the method is invalid
|
|
443
443
|
:returns: list of dictionaries with the energy in Hartree and the conformer index
|
|
444
444
|
"""
|
|
445
445
|
|
|
@@ -472,7 +472,7 @@ async def _single_energy(
|
|
|
472
472
|
:param timeout: time in seconds before the Workflow times out
|
|
473
473
|
:param name: name for the job
|
|
474
474
|
:param folder_uuid: folder UUID
|
|
475
|
-
:raises
|
|
475
|
+
:raises MethodTooSlowError: if the method is invalid
|
|
476
476
|
:returns: dictionary with the energy in Hartree and the conformer index
|
|
477
477
|
"""
|
|
478
478
|
get_api_key()
|
|
@@ -552,7 +552,7 @@ def run_optimize(
|
|
|
552
552
|
:param timeout: time in seconds before the Workflow times out
|
|
553
553
|
:param name: name for the job
|
|
554
554
|
:param folder_uuid: folder UUID
|
|
555
|
-
:raises
|
|
555
|
+
:raises MethodTooSlowError: if the method is invalid
|
|
556
556
|
:returns: dictionary with the optimized conformer(s) and optional list of energies per conformer
|
|
557
557
|
"""
|
|
558
558
|
return asyncio.run(
|
|
@@ -583,7 +583,7 @@ def batch_optimize(
|
|
|
583
583
|
:param timeout: time in seconds before the Workflow times out
|
|
584
584
|
:param name: name for the job
|
|
585
585
|
:param folder_uuid: folder UUID
|
|
586
|
-
:raises
|
|
586
|
+
:raises MethodTooSlowError: if the method is invalid
|
|
587
587
|
:returns: dictionaries with optimized conformer(s) and optional list of energies per conformer
|
|
588
588
|
"""
|
|
589
589
|
|
|
@@ -619,7 +619,7 @@ async def _single_optimize(
|
|
|
619
619
|
:param timeout: time in seconds before the Workflow times out
|
|
620
620
|
:param name: name for the job
|
|
621
621
|
:param folder_uuid: folder UUID
|
|
622
|
-
:raises
|
|
622
|
+
:raises MethodTooSlowError: if the method is invalid
|
|
623
623
|
:returns: dictionary with the optimized conformer(s) and optional list of energies per conformer
|
|
624
624
|
"""
|
|
625
625
|
get_api_key()
|
|
@@ -897,7 +897,7 @@ def run_charges(
|
|
|
897
897
|
:param timeout: timeout in seconds
|
|
898
898
|
:param name: name of the job
|
|
899
899
|
:param folder_uuid: folder UUID
|
|
900
|
-
:raises
|
|
900
|
+
:raises MethodTooSlowError: if the method is invalid
|
|
901
901
|
:returns: dictionary with the charges and the conformer index
|
|
902
902
|
"""
|
|
903
903
|
return asyncio.run(_single_charges(mol, method, engine, mode, timeout, name, folder_uuid))
|
|
@@ -924,7 +924,7 @@ def batch_charges(
|
|
|
924
924
|
:param timeout: timeout in seconds
|
|
925
925
|
:param name: name of the job
|
|
926
926
|
:param folder_uuid: folder UUID
|
|
927
|
-
:raises
|
|
927
|
+
:raises MethodTooSlowError: if the method is invalid
|
|
928
928
|
:returns: list of dictionaries with the charges and the conformer index
|
|
929
929
|
"""
|
|
930
930
|
|
|
@@ -958,7 +958,7 @@ async def _single_charges(
|
|
|
958
958
|
:param timeout: timeout in seconds
|
|
959
959
|
:param name: name of the job
|
|
960
960
|
:param folder_uuid: folder UUID
|
|
961
|
-
:raises
|
|
961
|
+
:raises MethodTooSlowError: if the method is invalid
|
|
962
962
|
:returns: dictionary with the charges and the conformer index
|
|
963
963
|
"""
|
|
964
964
|
get_api_key()
|
|
@@ -78,7 +78,7 @@ class User(BaseModel):
|
|
|
78
78
|
weekly_credits: float | None = None
|
|
79
79
|
credits: float | None = None
|
|
80
80
|
billing_name: str | None = None
|
|
81
|
-
billing_address: str | None = None
|
|
81
|
+
billing_address: str | dict | None = None
|
|
82
82
|
credit_balance_warning: float | None = None
|
|
83
83
|
organization: Organization | None = None
|
|
84
84
|
organization_role: OrganizationRole | None = None
|