rowan-python 2.1.0__tar.gz → 2.1.2__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-2.1.0 → rowan_python-2.1.2}/PKG-INFO +1 -1
- {rowan_python-2.1.0 → rowan_python-2.1.2}/docs/index.md +10 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/pixi.lock +80 -93
- {rowan_python-2.1.0 → rowan_python-2.1.2}/pyproject.toml +1 -1
- {rowan_python-2.1.0 → rowan_python-2.1.2}/rowan/protein.py +7 -3
- {rowan_python-2.1.0 → rowan_python-2.1.2}/.envrc +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/.github/workflows/python-publish.yml +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/.github/workflows/test.yml +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/.gitignore +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/.pre-commit-config.yaml +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/LICENSE +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/README.md +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/docs/images/deciduous-tree-favicon.png +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/docs/rowan_rdkit.md +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/docs/stylesheets/colors.css +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/PROTAC_solubility.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/basic_calculation_from_json.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/basic_calculation_with_constraint.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/basic_calculation_with_solvent.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/bde.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/cofolding_screen.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/conformer_dependent_redox.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/conformers.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/data/workflow_example.json +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/docking_screen.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/irc.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/macropka.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/multistage_opt.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/optimization.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/phenol_pka.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/pka.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/protein_cofolding.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/examples/scan.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/mkdocs.yml +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/rowan/__init__.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/rowan/constants.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/rowan/folder.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/rowan/project.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/rowan/py.typed +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/rowan/rowan_rdkit/__init__.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/rowan/rowan_rdkit/chem_utils.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/rowan/user.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/rowan/utils.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.2}/rowan/workflow.py +0 -0
|
@@ -38,6 +38,16 @@
|
|
|
38
38
|
members_order: source # show items in the order they appear in code
|
|
39
39
|
group_by_category: true # adds “Classes”, “Functions”, … headings -->
|
|
40
40
|
|
|
41
|
+
## Project Class and Functions
|
|
42
|
+
::: rowan.project
|
|
43
|
+
handler: python
|
|
44
|
+
options:
|
|
45
|
+
show_source: false
|
|
46
|
+
show_root_heading: false
|
|
47
|
+
show_root_toc_entry: false
|
|
48
|
+
members_order: source # show items in the order they appear in code
|
|
49
|
+
group_by_category: true # adds “Classes”, “Functions”, … headings -->
|
|
50
|
+
|
|
41
51
|
## Utilities
|
|
42
52
|
::: rowan.utils
|
|
43
53
|
handler: python
|
|
@@ -44,11 +44,11 @@ environments:
|
|
|
44
44
|
- pypi: https://files.pythonhosted.org/packages/6a/c0/ec2b1c8712ca690e5d61979dee872603e92b8a32f94cc1b72d53beab008a/pydantic-2.11.7-py3-none-any.whl
|
|
45
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
|
|
46
46
|
- pypi: https://files.pythonhosted.org/packages/8b/6a/c6ec8e124bc621ce0706894f877c6f57d7c9c53cbc73510ac046d40b4dc7/rdkit-2025.3.5-cp313-cp313-manylinux_2_28_x86_64.whl
|
|
47
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
47
|
+
- pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
|
|
48
48
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
49
49
|
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
|
|
50
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
51
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
50
|
+
- pypi: https://files.pythonhosted.org/packages/ed/96/f3b274b32a711fad65f317731411a6fefc65c6d738926dc9d1e607bddb81/stjames-0.0.102-py3-none-any.whl
|
|
51
|
+
- pypi: https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl
|
|
52
52
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
53
53
|
- pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl
|
|
54
54
|
- pypi: ./
|
|
@@ -84,11 +84,11 @@ environments:
|
|
|
84
84
|
- pypi: https://files.pythonhosted.org/packages/6a/c0/ec2b1c8712ca690e5d61979dee872603e92b8a32f94cc1b72d53beab008a/pydantic-2.11.7-py3-none-any.whl
|
|
85
85
|
- pypi: https://files.pythonhosted.org/packages/3a/cc/5999d1eb705a6cefc31f0b4a90e9f7fc400539b1a1030529700cc1b51838/pydantic_core-2.33.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
86
86
|
- pypi: https://files.pythonhosted.org/packages/c6/1d/4cc7d00c388dde4cb4ce6ff7c4314f0f2c0e342d5b7a7b779fc12c32cf5a/rdkit-2025.3.5-cp313-cp313-macosx_11_0_arm64.whl
|
|
87
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
87
|
+
- pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
|
|
88
88
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
89
89
|
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
|
|
90
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
91
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
90
|
+
- pypi: https://files.pythonhosted.org/packages/ed/96/f3b274b32a711fad65f317731411a6fefc65c6d738926dc9d1e607bddb81/stjames-0.0.102-py3-none-any.whl
|
|
91
|
+
- pypi: https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl
|
|
92
92
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
93
93
|
- pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl
|
|
94
94
|
- pypi: ./
|
|
@@ -131,13 +131,13 @@ environments:
|
|
|
131
131
|
- pypi: https://files.pythonhosted.org/packages/7e/95/42aa2156235cbc8fa61208aded06ef46111c4d3f0de233107b3f38631803/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
|
|
132
132
|
- pypi: https://files.pythonhosted.org/packages/85/32/10bb5764d90a8eee674e9dc6f4db6a0ab47c8c4d0d83c27f7c39ac415a4d/click-8.2.1-py3-none-any.whl
|
|
133
133
|
- pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl
|
|
134
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
134
|
+
- pypi: https://files.pythonhosted.org/packages/90/65/28752c3a896566ec93e0219fc4f47ff71bd2b745f51554c93e8dcb659796/coverage-7.10.5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
|
|
135
135
|
- pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl
|
|
136
136
|
- pypi: https://files.pythonhosted.org/packages/33/6b/e0547afaf41bf2c42e52430072fa5658766e3d65bd4b03a563d1b6336f57/distlib-0.4.0-py2.py3-none-any.whl
|
|
137
137
|
- pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl
|
|
138
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
138
|
+
- pypi: https://files.pythonhosted.org/packages/42/14/42b2651a2f46b022ccd948bca9f2d5af0fd8929c4eec235b8d6d844fbe67/filelock-3.19.1-py3-none-any.whl
|
|
139
139
|
- pypi: https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl
|
|
140
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
140
|
+
- pypi: https://files.pythonhosted.org/packages/aa/8c/b7cfdd8dfe48f6b09f7353323732e1a290c388bd14f216947928dc85f904/griffe-1.13.0-py3-none-any.whl
|
|
141
141
|
- pypi: https://files.pythonhosted.org/packages/7b/03/699f059a54b7873a11bf53389236c06640bf47be590aa87a521d7c4bb044/griffe_pydantic-1.1.6-py3-none-any.whl
|
|
142
142
|
- pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl
|
|
143
143
|
- pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl
|
|
@@ -154,12 +154,12 @@ environments:
|
|
|
154
154
|
- pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl
|
|
155
155
|
- pypi: https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl
|
|
156
156
|
- pypi: https://files.pythonhosted.org/packages/22/5b/dbc6a8cddc9cfa9c4971d59fb12bb8d42e161b7e7f8cc89e49137c5b279c/mkdocs-1.6.1-py3-none-any.whl
|
|
157
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
157
|
+
- pypi: https://files.pythonhosted.org/packages/9f/4d/7123b6fa2278000688ebd338e2a06d16870aaf9eceae6ba047ea05f92df1/mkdocs_autorefs-1.4.3-py3-none-any.whl
|
|
158
158
|
- pypi: https://files.pythonhosted.org/packages/9f/d4/029f984e8d3f3b6b726bd33cafc473b75e9e44c0f7e80a5b29abc466bdea/mkdocs_get_deps-0.2.0-py3-none-any.whl
|
|
159
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
159
|
+
- pypi: https://files.pythonhosted.org/packages/22/0b/545a4f8d4f9057e77f1d99640eb09aaae40c4f9034707f25636caf716ff9/mkdocs_material-9.6.18-py3-none-any.whl
|
|
160
160
|
- pypi: https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl
|
|
161
161
|
- pypi: https://files.pythonhosted.org/packages/de/b4/3c5eac68f31e124a55d255d318c7445840fa1be55e013f507556d6481913/mkdocstrings-0.30.0-py3-none-any.whl
|
|
162
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
162
|
+
- pypi: https://files.pythonhosted.org/packages/5d/96/7ecc71bb9f01ee20f201b2531960b401159c6730aec90ec76a1b74bc81e1/mkdocstrings_python-1.18.0-py3-none-any.whl
|
|
163
163
|
- pypi: https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl
|
|
164
164
|
- pypi: https://files.pythonhosted.org/packages/9f/0f/478b4dce1cb4f43cf0f0d00fba3030b21ca04a01b74d1cd272a528cf446f/mypy-1.17.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
|
|
165
165
|
- pypi: https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl
|
|
@@ -168,11 +168,11 @@ environments:
|
|
|
168
168
|
- pypi: https://files.pythonhosted.org/packages/1d/0f/571b2c7a3833ae419fe69ff7b479a78d313581785203cc70a8db90121b9a/numpy-2.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
|
|
169
169
|
- pypi: https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl
|
|
170
170
|
- pypi: https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl
|
|
171
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
171
|
+
- pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl
|
|
172
172
|
- pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl
|
|
173
173
|
- pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl
|
|
174
174
|
- pypi: https://files.pythonhosted.org/packages/d5/1c/a2a29649c0b1983d3ef57ee87a66487fdeb45132df66ab30dd37f7dbe162/pillow-11.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
|
|
175
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
175
|
+
- pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl
|
|
176
176
|
- pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl
|
|
177
177
|
- pypi: https://files.pythonhosted.org/packages/5b/a5/987a405322d78a73b66e39e4a90e4ef156fd7141bf71df987e50717c321b/pre_commit-4.3.0-py2.py3-none-any.whl
|
|
178
178
|
- pypi: https://files.pythonhosted.org/packages/ce/4f/5249960887b1fbe561d9ff265496d170b55a735b76724f10ef19f9e40716/prompt_toolkit-3.0.51-py3-none-any.whl
|
|
@@ -189,15 +189,15 @@ environments:
|
|
|
189
189
|
- pypi: https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl
|
|
190
190
|
- pypi: https://files.pythonhosted.org/packages/8b/6a/c6ec8e124bc621ce0706894f877c6f57d7c9c53cbc73510ac046d40b4dc7/rdkit-2025.3.5-cp313-cp313-manylinux_2_28_x86_64.whl
|
|
191
191
|
- pypi: https://files.pythonhosted.org/packages/d9/0f/90088510d4758e0ee475ae1fc7f96e7bccd0e31f24107567075482b2fe9e/rdkit_stubs-0.8-py3-none-any.whl
|
|
192
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
193
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
192
|
+
- pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
|
|
193
|
+
- pypi: https://files.pythonhosted.org/packages/c0/1d/b4207ec35e7babaee62c462769e77457e26eb853fbdc877af29417033333/ruff-0.12.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
194
194
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
195
195
|
- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
|
|
196
196
|
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
|
|
197
197
|
- pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl
|
|
198
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
198
|
+
- pypi: https://files.pythonhosted.org/packages/ed/96/f3b274b32a711fad65f317731411a6fefc65c6d738926dc9d1e607bddb81/stjames-0.0.102-py3-none-any.whl
|
|
199
199
|
- pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl
|
|
200
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
200
|
+
- pypi: https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl
|
|
201
201
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
202
202
|
- pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl
|
|
203
203
|
- pypi: https://files.pythonhosted.org/packages/76/06/04c8e804f813cf972e3262f3f8584c232de64f0cde9f703b46cf53a45090/virtualenv-20.34.0-py3-none-any.whl
|
|
@@ -231,13 +231,13 @@ environments:
|
|
|
231
231
|
- pypi: https://files.pythonhosted.org/packages/65/ca/2135ac97709b400c7654b4b764daf5c5567c2da45a30cdd20f9eefe2d658/charset_normalizer-3.4.3-cp313-cp313-macosx_10_13_universal2.whl
|
|
232
232
|
- pypi: https://files.pythonhosted.org/packages/85/32/10bb5764d90a8eee674e9dc6f4db6a0ab47c8c4d0d83c27f7c39ac415a4d/click-8.2.1-py3-none-any.whl
|
|
233
233
|
- pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl
|
|
234
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
234
|
+
- pypi: https://files.pythonhosted.org/packages/25/d7/b71022408adbf040a680b8c64bf6ead3be37b553e5844f7465643979f7ca/coverage-7.10.5-cp313-cp313-macosx_11_0_arm64.whl
|
|
235
235
|
- pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl
|
|
236
236
|
- pypi: https://files.pythonhosted.org/packages/33/6b/e0547afaf41bf2c42e52430072fa5658766e3d65bd4b03a563d1b6336f57/distlib-0.4.0-py2.py3-none-any.whl
|
|
237
237
|
- pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl
|
|
238
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
238
|
+
- pypi: https://files.pythonhosted.org/packages/42/14/42b2651a2f46b022ccd948bca9f2d5af0fd8929c4eec235b8d6d844fbe67/filelock-3.19.1-py3-none-any.whl
|
|
239
239
|
- pypi: https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl
|
|
240
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
240
|
+
- pypi: https://files.pythonhosted.org/packages/aa/8c/b7cfdd8dfe48f6b09f7353323732e1a290c388bd14f216947928dc85f904/griffe-1.13.0-py3-none-any.whl
|
|
241
241
|
- pypi: https://files.pythonhosted.org/packages/7b/03/699f059a54b7873a11bf53389236c06640bf47be590aa87a521d7c4bb044/griffe_pydantic-1.1.6-py3-none-any.whl
|
|
242
242
|
- pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl
|
|
243
243
|
- pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl
|
|
@@ -254,12 +254,12 @@ environments:
|
|
|
254
254
|
- pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl
|
|
255
255
|
- pypi: https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl
|
|
256
256
|
- pypi: https://files.pythonhosted.org/packages/22/5b/dbc6a8cddc9cfa9c4971d59fb12bb8d42e161b7e7f8cc89e49137c5b279c/mkdocs-1.6.1-py3-none-any.whl
|
|
257
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
257
|
+
- pypi: https://files.pythonhosted.org/packages/9f/4d/7123b6fa2278000688ebd338e2a06d16870aaf9eceae6ba047ea05f92df1/mkdocs_autorefs-1.4.3-py3-none-any.whl
|
|
258
258
|
- pypi: https://files.pythonhosted.org/packages/9f/d4/029f984e8d3f3b6b726bd33cafc473b75e9e44c0f7e80a5b29abc466bdea/mkdocs_get_deps-0.2.0-py3-none-any.whl
|
|
259
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
259
|
+
- pypi: https://files.pythonhosted.org/packages/22/0b/545a4f8d4f9057e77f1d99640eb09aaae40c4f9034707f25636caf716ff9/mkdocs_material-9.6.18-py3-none-any.whl
|
|
260
260
|
- pypi: https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl
|
|
261
261
|
- pypi: https://files.pythonhosted.org/packages/de/b4/3c5eac68f31e124a55d255d318c7445840fa1be55e013f507556d6481913/mkdocstrings-0.30.0-py3-none-any.whl
|
|
262
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
262
|
+
- pypi: https://files.pythonhosted.org/packages/5d/96/7ecc71bb9f01ee20f201b2531960b401159c6730aec90ec76a1b74bc81e1/mkdocstrings_python-1.18.0-py3-none-any.whl
|
|
263
263
|
- pypi: https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl
|
|
264
264
|
- pypi: https://files.pythonhosted.org/packages/07/ac/ee93fbde9d2242657128af8c86f5d917cd2887584cf948a8e3663d0cd737/mypy-1.17.1-cp313-cp313-macosx_11_0_arm64.whl
|
|
265
265
|
- pypi: https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl
|
|
@@ -268,11 +268,11 @@ environments:
|
|
|
268
268
|
- pypi: https://files.pythonhosted.org/packages/20/4e/c116466d22acaf4573e58421c956c6076dc526e24a6be0903219775d862e/numpy-2.3.2-cp313-cp313-macosx_11_0_arm64.whl
|
|
269
269
|
- pypi: https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl
|
|
270
270
|
- pypi: https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl
|
|
271
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
271
|
+
- pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl
|
|
272
272
|
- pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl
|
|
273
273
|
- pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl
|
|
274
274
|
- pypi: https://files.pythonhosted.org/packages/f9/0e/37d7d3eca6c879fbd9dba21268427dffda1ab00d4eb05b32923d4fbe3b12/pillow-11.3.0-cp313-cp313-macosx_11_0_arm64.whl
|
|
275
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
275
|
+
- pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl
|
|
276
276
|
- pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl
|
|
277
277
|
- pypi: https://files.pythonhosted.org/packages/5b/a5/987a405322d78a73b66e39e4a90e4ef156fd7141bf71df987e50717c321b/pre_commit-4.3.0-py2.py3-none-any.whl
|
|
278
278
|
- pypi: https://files.pythonhosted.org/packages/ce/4f/5249960887b1fbe561d9ff265496d170b55a735b76724f10ef19f9e40716/prompt_toolkit-3.0.51-py3-none-any.whl
|
|
@@ -289,15 +289,15 @@ environments:
|
|
|
289
289
|
- pypi: https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl
|
|
290
290
|
- pypi: https://files.pythonhosted.org/packages/c6/1d/4cc7d00c388dde4cb4ce6ff7c4314f0f2c0e342d5b7a7b779fc12c32cf5a/rdkit-2025.3.5-cp313-cp313-macosx_11_0_arm64.whl
|
|
291
291
|
- pypi: https://files.pythonhosted.org/packages/d9/0f/90088510d4758e0ee475ae1fc7f96e7bccd0e31f24107567075482b2fe9e/rdkit_stubs-0.8-py3-none-any.whl
|
|
292
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
293
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
292
|
+
- pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
|
|
293
|
+
- pypi: https://files.pythonhosted.org/packages/d7/f1/97f509b4108d7bae16c48389f54f005b62ce86712120fd8b2d8e88a7cb49/ruff-0.12.10-py3-none-macosx_11_0_arm64.whl
|
|
294
294
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
295
295
|
- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
|
|
296
296
|
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
|
|
297
297
|
- pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl
|
|
298
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
298
|
+
- pypi: https://files.pythonhosted.org/packages/ed/96/f3b274b32a711fad65f317731411a6fefc65c6d738926dc9d1e607bddb81/stjames-0.0.102-py3-none-any.whl
|
|
299
299
|
- pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl
|
|
300
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
300
|
+
- pypi: https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl
|
|
301
301
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
302
302
|
- pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl
|
|
303
303
|
- pypi: https://files.pythonhosted.org/packages/76/06/04c8e804f813cf972e3262f3f8584c232de64f0cde9f703b46cf53a45090/virtualenv-20.34.0-py3-none-any.whl
|
|
@@ -439,17 +439,17 @@ packages:
|
|
|
439
439
|
version: 0.4.6
|
|
440
440
|
sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6
|
|
441
441
|
requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*'
|
|
442
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
442
|
+
- pypi: https://files.pythonhosted.org/packages/25/d7/b71022408adbf040a680b8c64bf6ead3be37b553e5844f7465643979f7ca/coverage-7.10.5-cp313-cp313-macosx_11_0_arm64.whl
|
|
443
443
|
name: coverage
|
|
444
|
-
version: 7.10.
|
|
445
|
-
sha256:
|
|
444
|
+
version: 7.10.5
|
|
445
|
+
sha256: 2b96bfdf7c0ea9faebce088a3ecb2382819da4fbc05c7b80040dbc428df6af44
|
|
446
446
|
requires_dist:
|
|
447
447
|
- tomli ; python_full_version <= '3.11' and extra == 'toml'
|
|
448
448
|
requires_python: '>=3.9'
|
|
449
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
449
|
+
- pypi: https://files.pythonhosted.org/packages/90/65/28752c3a896566ec93e0219fc4f47ff71bd2b745f51554c93e8dcb659796/coverage-7.10.5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
|
|
450
450
|
name: coverage
|
|
451
|
-
version: 7.10.
|
|
452
|
-
sha256:
|
|
451
|
+
version: 7.10.5
|
|
452
|
+
sha256: 8002dc6a049aac0e81ecec97abfb08c01ef0c1fbf962d0c98da3950ace89b869
|
|
453
453
|
requires_dist:
|
|
454
454
|
- tomli ; python_full_version <= '3.11' and extra == 'toml'
|
|
455
455
|
requires_python: '>=3.9'
|
|
@@ -475,24 +475,10 @@ packages:
|
|
|
475
475
|
- littleutils ; extra == 'tests'
|
|
476
476
|
- rich ; python_full_version >= '3.11' and extra == 'tests'
|
|
477
477
|
requires_python: '>=3.8'
|
|
478
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
478
|
+
- pypi: https://files.pythonhosted.org/packages/42/14/42b2651a2f46b022ccd948bca9f2d5af0fd8929c4eec235b8d6d844fbe67/filelock-3.19.1-py3-none-any.whl
|
|
479
479
|
name: filelock
|
|
480
|
-
version: 3.
|
|
481
|
-
sha256:
|
|
482
|
-
requires_dist:
|
|
483
|
-
- furo>=2024.8.6 ; extra == 'docs'
|
|
484
|
-
- sphinx-autodoc-typehints>=3 ; extra == 'docs'
|
|
485
|
-
- sphinx>=8.1.3 ; extra == 'docs'
|
|
486
|
-
- covdefaults>=2.3 ; extra == 'testing'
|
|
487
|
-
- coverage>=7.6.10 ; extra == 'testing'
|
|
488
|
-
- diff-cover>=9.2.1 ; extra == 'testing'
|
|
489
|
-
- pytest-asyncio>=0.25.2 ; extra == 'testing'
|
|
490
|
-
- pytest-cov>=6 ; extra == 'testing'
|
|
491
|
-
- pytest-mock>=3.14 ; extra == 'testing'
|
|
492
|
-
- pytest-timeout>=2.3.1 ; extra == 'testing'
|
|
493
|
-
- pytest>=8.3.4 ; extra == 'testing'
|
|
494
|
-
- virtualenv>=20.28.1 ; extra == 'testing'
|
|
495
|
-
- typing-extensions>=4.12.2 ; python_full_version < '3.11' and extra == 'typing'
|
|
480
|
+
version: 3.19.1
|
|
481
|
+
sha256: d38e30481def20772f5baf097c122c3babc4fcdb7e14e57049eb9d88c6dc017d
|
|
496
482
|
requires_python: '>=3.9'
|
|
497
483
|
- pypi: https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl
|
|
498
484
|
name: ghp-import
|
|
@@ -504,10 +490,10 @@ packages:
|
|
|
504
490
|
- markdown ; extra == 'dev'
|
|
505
491
|
- flake8 ; extra == 'dev'
|
|
506
492
|
- wheel ; extra == 'dev'
|
|
507
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
493
|
+
- pypi: https://files.pythonhosted.org/packages/aa/8c/b7cfdd8dfe48f6b09f7353323732e1a290c388bd14f216947928dc85f904/griffe-1.13.0-py3-none-any.whl
|
|
508
494
|
name: griffe
|
|
509
|
-
version: 1.
|
|
510
|
-
sha256:
|
|
495
|
+
version: 1.13.0
|
|
496
|
+
sha256: 470fde5b735625ac0a36296cd194617f039e9e83e301fcbd493e2b58382d0559
|
|
511
497
|
requires_dist:
|
|
512
498
|
- colorama>=0.4
|
|
513
499
|
requires_python: '>=3.9'
|
|
@@ -952,10 +938,10 @@ packages:
|
|
|
952
938
|
- pyyaml==5.1 ; extra == 'min-versions'
|
|
953
939
|
- watchdog==2.0 ; extra == 'min-versions'
|
|
954
940
|
requires_python: '>=3.8'
|
|
955
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
941
|
+
- pypi: https://files.pythonhosted.org/packages/9f/4d/7123b6fa2278000688ebd338e2a06d16870aaf9eceae6ba047ea05f92df1/mkdocs_autorefs-1.4.3-py3-none-any.whl
|
|
956
942
|
name: mkdocs-autorefs
|
|
957
|
-
version: 1.4.
|
|
958
|
-
sha256:
|
|
943
|
+
version: 1.4.3
|
|
944
|
+
sha256: 469d85eb3114801d08e9cc55d102b3ba65917a869b893403b8987b601cf55dc9
|
|
959
945
|
requires_dist:
|
|
960
946
|
- markdown>=3.3
|
|
961
947
|
- markupsafe>=2.0.1
|
|
@@ -971,13 +957,14 @@ packages:
|
|
|
971
957
|
- platformdirs>=2.2.0
|
|
972
958
|
- pyyaml>=5.1
|
|
973
959
|
requires_python: '>=3.8'
|
|
974
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
960
|
+
- pypi: https://files.pythonhosted.org/packages/22/0b/545a4f8d4f9057e77f1d99640eb09aaae40c4f9034707f25636caf716ff9/mkdocs_material-9.6.18-py3-none-any.whl
|
|
975
961
|
name: mkdocs-material
|
|
976
|
-
version: 9.6.
|
|
977
|
-
sha256:
|
|
962
|
+
version: 9.6.18
|
|
963
|
+
sha256: dbc1e146a0ecce951a4d84f97b816a54936cdc9e1edd1667fc6868878ac06701
|
|
978
964
|
requires_dist:
|
|
979
965
|
- babel~=2.10
|
|
980
966
|
- backrefs~=5.7.post1
|
|
967
|
+
- click<8.2.2
|
|
981
968
|
- colorama~=0.4
|
|
982
969
|
- jinja2~=3.1
|
|
983
970
|
- markdown~=3.2
|
|
@@ -1016,14 +1003,14 @@ packages:
|
|
|
1016
1003
|
- mkdocstrings-python-legacy>=0.2.1 ; extra == 'python-legacy'
|
|
1017
1004
|
- mkdocstrings-python>=1.16.2 ; extra == 'python'
|
|
1018
1005
|
requires_python: '>=3.9'
|
|
1019
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1006
|
+
- pypi: https://files.pythonhosted.org/packages/5d/96/7ecc71bb9f01ee20f201b2531960b401159c6730aec90ec76a1b74bc81e1/mkdocstrings_python-1.18.0-py3-none-any.whl
|
|
1020
1007
|
name: mkdocstrings-python
|
|
1021
|
-
version: 1.
|
|
1022
|
-
sha256:
|
|
1008
|
+
version: 1.18.0
|
|
1009
|
+
sha256: f5056d8afe9a9683ad0c59001df1ecd9668b51c19b9a6b4dc0ff02cc9b76265a
|
|
1023
1010
|
requires_dist:
|
|
1024
|
-
- mkdocstrings>=0.
|
|
1011
|
+
- mkdocstrings>=0.30
|
|
1025
1012
|
- mkdocs-autorefs>=1.4
|
|
1026
|
-
- griffe>=1.
|
|
1013
|
+
- griffe>=1.13
|
|
1027
1014
|
- typing-extensions>=4.0 ; python_full_version < '3.11'
|
|
1028
1015
|
requires_python: '>=3.9'
|
|
1029
1016
|
- pypi: https://files.pythonhosted.org/packages/2b/9f/7ba6f94fc1e9ac3d2b853fdff3035fb2fa5afbed898c4a72b8a020610594/more_itertools-10.7.0-py3-none-any.whl
|
|
@@ -1141,16 +1128,16 @@ packages:
|
|
|
1141
1128
|
- pytest ; extra == 'dev'
|
|
1142
1129
|
- tox ; extra == 'dev'
|
|
1143
1130
|
- black ; extra == 'lint'
|
|
1144
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1131
|
+
- pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl
|
|
1145
1132
|
name: parso
|
|
1146
|
-
version: 0.8.
|
|
1147
|
-
sha256:
|
|
1133
|
+
version: 0.8.5
|
|
1134
|
+
sha256: 646204b5ee239c396d040b90f9e272e9a8017c630092bf59980beb62fd033887
|
|
1148
1135
|
requires_dist:
|
|
1136
|
+
- pytest ; extra == 'testing'
|
|
1137
|
+
- docopt ; extra == 'testing'
|
|
1149
1138
|
- flake8==5.0.4 ; extra == 'qa'
|
|
1150
1139
|
- mypy==0.971 ; extra == 'qa'
|
|
1151
1140
|
- types-setuptools==67.2.0.1 ; extra == 'qa'
|
|
1152
|
-
- docopt ; extra == 'testing'
|
|
1153
|
-
- pytest ; extra == 'testing'
|
|
1154
1141
|
requires_python: '>=3.6'
|
|
1155
1142
|
- pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl
|
|
1156
1143
|
name: pathspec
|
|
@@ -1223,10 +1210,10 @@ packages:
|
|
|
1223
1210
|
- typing-extensions ; python_full_version < '3.10' and extra == 'typing'
|
|
1224
1211
|
- defusedxml ; extra == 'xmp'
|
|
1225
1212
|
requires_python: '>=3.9'
|
|
1226
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1213
|
+
- pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl
|
|
1227
1214
|
name: platformdirs
|
|
1228
|
-
version: 4.
|
|
1229
|
-
sha256:
|
|
1215
|
+
version: 4.4.0
|
|
1216
|
+
sha256: abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85
|
|
1230
1217
|
requires_dist:
|
|
1231
1218
|
- furo>=2024.8.6 ; extra == 'docs'
|
|
1232
1219
|
- proselint>=0.14 ; extra == 'docs'
|
|
@@ -1480,10 +1467,10 @@ packages:
|
|
|
1480
1467
|
purls: []
|
|
1481
1468
|
size: 252359
|
|
1482
1469
|
timestamp: 1740379663071
|
|
1483
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1470
|
+
- pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl
|
|
1484
1471
|
name: requests
|
|
1485
|
-
version: 2.32.
|
|
1486
|
-
sha256:
|
|
1472
|
+
version: 2.32.5
|
|
1473
|
+
sha256: 2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6
|
|
1487
1474
|
requires_dist:
|
|
1488
1475
|
- charset-normalizer>=2,<4
|
|
1489
1476
|
- idna>=2.5,<4
|
|
@@ -1491,11 +1478,11 @@ packages:
|
|
|
1491
1478
|
- certifi>=2017.4.17
|
|
1492
1479
|
- pysocks>=1.5.6,!=1.5.7 ; extra == 'socks'
|
|
1493
1480
|
- chardet>=3.0.2,<6 ; extra == 'use-chardet-on-py3'
|
|
1494
|
-
requires_python: '>=3.
|
|
1481
|
+
requires_python: '>=3.9'
|
|
1495
1482
|
- pypi: ./
|
|
1496
1483
|
name: rowan-python
|
|
1497
|
-
version: 2.1.
|
|
1498
|
-
sha256:
|
|
1484
|
+
version: 2.1.2
|
|
1485
|
+
sha256: de8a1541322c4b6721fe37f8aa52b2a8679f35670d2728089d7eee93eca9b396
|
|
1499
1486
|
requires_dist:
|
|
1500
1487
|
- httpx
|
|
1501
1488
|
- stjames>=0.0.83
|
|
@@ -1504,15 +1491,15 @@ packages:
|
|
|
1504
1491
|
- nest-asyncio
|
|
1505
1492
|
requires_python: '>=3.9'
|
|
1506
1493
|
editable: true
|
|
1507
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1494
|
+
- pypi: https://files.pythonhosted.org/packages/c0/1d/b4207ec35e7babaee62c462769e77457e26eb853fbdc877af29417033333/ruff-0.12.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
1508
1495
|
name: ruff
|
|
1509
|
-
version: 0.12.
|
|
1510
|
-
sha256:
|
|
1496
|
+
version: 0.12.10
|
|
1497
|
+
sha256: 1f68433c4fbc63efbfa3ba5db31727db229fa4e61000f452c540474b03de52a9
|
|
1511
1498
|
requires_python: '>=3.7'
|
|
1512
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1499
|
+
- pypi: https://files.pythonhosted.org/packages/d7/f1/97f509b4108d7bae16c48389f54f005b62ce86712120fd8b2d8e88a7cb49/ruff-0.12.10-py3-none-macosx_11_0_arm64.whl
|
|
1513
1500
|
name: ruff
|
|
1514
|
-
version: 0.12.
|
|
1515
|
-
sha256:
|
|
1501
|
+
version: 0.12.10
|
|
1502
|
+
sha256: d59e58586829f8e4a9920788f6efba97a13d1fa320b047814e8afede381c6839
|
|
1516
1503
|
requires_python: '>=3.7'
|
|
1517
1504
|
- pypi: https://files.pythonhosted.org/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl
|
|
1518
1505
|
name: setuptools
|
|
@@ -1594,10 +1581,10 @@ packages:
|
|
|
1594
1581
|
- pygments ; extra == 'tests'
|
|
1595
1582
|
- littleutils ; extra == 'tests'
|
|
1596
1583
|
- cython ; extra == 'tests'
|
|
1597
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1584
|
+
- pypi: https://files.pythonhosted.org/packages/ed/96/f3b274b32a711fad65f317731411a6fefc65c6d738926dc9d1e607bddb81/stjames-0.0.102-py3-none-any.whl
|
|
1598
1585
|
name: stjames
|
|
1599
|
-
version: 0.0.
|
|
1600
|
-
sha256:
|
|
1586
|
+
version: 0.0.102
|
|
1587
|
+
sha256: 234b3e9680d1eaaf613cb8cc9f2084f8fe4920d0ac566e1e503c9e8d4ff73a4e
|
|
1601
1588
|
requires_dist:
|
|
1602
1589
|
- pydantic>=2.4
|
|
1603
1590
|
- numpy
|
|
@@ -1643,10 +1630,10 @@ packages:
|
|
|
1643
1630
|
- pytest-mypy-testing ; extra == 'test'
|
|
1644
1631
|
- pytest>=7.0,<8.2 ; extra == 'test'
|
|
1645
1632
|
requires_python: '>=3.8'
|
|
1646
|
-
- pypi: https://files.pythonhosted.org/packages/
|
|
1633
|
+
- pypi: https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl
|
|
1647
1634
|
name: typing-extensions
|
|
1648
|
-
version: 4.
|
|
1649
|
-
sha256:
|
|
1635
|
+
version: 4.15.0
|
|
1636
|
+
sha256: f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548
|
|
1650
1637
|
requires_python: '>=3.9'
|
|
1651
1638
|
- pypi: https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl
|
|
1652
1639
|
name: typing-inspection
|
|
@@ -162,7 +162,7 @@ def list_proteins(
|
|
|
162
162
|
return [Protein(**item) for item in results]
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
def upload_protein(name: str, file_path: Path) -> Protein:
|
|
165
|
+
def upload_protein(name: str, file_path: Path, project_uuid: str | None = None) -> Protein:
|
|
166
166
|
"""
|
|
167
167
|
Uploads a protein from a PDB file to the API.
|
|
168
168
|
|
|
@@ -181,7 +181,11 @@ def upload_protein(name: str, file_path: Path) -> Protein:
|
|
|
181
181
|
protein_data = conversion_response.json()
|
|
182
182
|
|
|
183
183
|
# Step 2: Use the converted data to create the final protein object.
|
|
184
|
-
creation_payload = {
|
|
184
|
+
creation_payload = {
|
|
185
|
+
"name": name,
|
|
186
|
+
"protein_data": protein_data,
|
|
187
|
+
"project_uuid": project_uuid,
|
|
188
|
+
}
|
|
185
189
|
final_response = client.post("/protein", json=creation_payload)
|
|
186
190
|
final_response.raise_for_status()
|
|
187
191
|
|
|
@@ -189,7 +193,7 @@ def upload_protein(name: str, file_path: Path) -> Protein:
|
|
|
189
193
|
return Protein(**final_response.json())
|
|
190
194
|
|
|
191
195
|
|
|
192
|
-
def create_protein_from_pdb_id(name: str, code: str, project_uuid: str) -> Protein:
|
|
196
|
+
def create_protein_from_pdb_id(name: str, code: str, project_uuid: str | None = None) -> Protein:
|
|
193
197
|
"""
|
|
194
198
|
Creates a protein from a PDB ID.
|
|
195
199
|
|
|
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
|
|
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
|