rowan-python 2.1.0__tar.gz → 2.1.1__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.1}/PKG-INFO +1 -1
- {rowan_python-2.1.0 → rowan_python-2.1.1}/docs/index.md +10 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/pixi.lock +2 -2
- {rowan_python-2.1.0 → rowan_python-2.1.1}/pyproject.toml +1 -1
- {rowan_python-2.1.0 → rowan_python-2.1.1}/.envrc +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/.github/workflows/python-publish.yml +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/.github/workflows/test.yml +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/.gitignore +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/.pre-commit-config.yaml +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/LICENSE +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/README.md +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/docs/images/deciduous-tree-favicon.png +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/docs/rowan_rdkit.md +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/docs/stylesheets/colors.css +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/PROTAC_solubility.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/basic_calculation_from_json.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/basic_calculation_with_constraint.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/basic_calculation_with_solvent.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/bde.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/cofolding_screen.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/conformer_dependent_redox.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/conformers.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/data/workflow_example.json +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/docking_screen.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/irc.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/macropka.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/multistage_opt.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/optimization.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/phenol_pka.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/pka.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/protein_cofolding.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/examples/scan.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/mkdocs.yml +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/rowan/__init__.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/rowan/constants.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/rowan/folder.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/rowan/project.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/rowan/protein.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/rowan/py.typed +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/rowan/rowan_rdkit/__init__.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/rowan/rowan_rdkit/chem_utils.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/rowan/user.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/rowan/utils.py +0 -0
- {rowan_python-2.1.0 → rowan_python-2.1.1}/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
|
|
@@ -1494,8 +1494,8 @@ packages:
|
|
|
1494
1494
|
requires_python: '>=3.8'
|
|
1495
1495
|
- pypi: ./
|
|
1496
1496
|
name: rowan-python
|
|
1497
|
-
version: 2.1.
|
|
1498
|
-
sha256:
|
|
1497
|
+
version: 2.1.1
|
|
1498
|
+
sha256: 73d6bc87006a2cb62e35e15b2e7cf63fe9f57221430af510ea4d83e105001d15
|
|
1499
1499
|
requires_dist:
|
|
1500
1500
|
- httpx
|
|
1501
1501
|
- stjames>=0.0.83
|
|
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
|
|
File without changes
|