Skip to content

Commit

Permalink
Merge pull request #26 from iantbeck/master
Browse files Browse the repository at this point in the history
Docs overhaul part 1
  • Loading branch information
iantbeck authored Aug 15, 2024
2 parents 20231ee + 97b664c commit a30bbfc
Show file tree
Hide file tree
Showing 32 changed files with 3,599 additions and 12 deletions.
6 changes: 6 additions & 0 deletions 3_Keywords/keywords.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,12 @@ If this keyword is not used, the software will ask what you want to do.
* **Default**: angstrom
* **Possible values**: bohr, angstrom

* `tooclose`
**Description:** Metric to compare interatimic distances. If a generated geometry contains an interatomic distance less than this value then the geometry will be removed. Comparisons are done in units of initial geometry.
* **Type**: int
* **Default**: 0.1
* **Possible values**: any integer


## Machine Learning Keywords (in alphabetical order)

Expand Down
2 changes: 2 additions & 0 deletions docs/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ dependencies:
- python=3.8
- sphinx
- sphinx_rtd_theme
- sphinx-book-theme
- sphinx-automodapi
- sphinx-autodoc-typehints
- sphinx-copybutton
- autodoc-pydantic

# PESLearn depends
Expand Down
Binary file added docs/source/_static/peslearn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions docs/source/community/community.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

PES-Learn Community
===================

.. toctree::

Support <support>
Contribute <contribute>

5 changes: 5 additions & 0 deletions docs/source/community/contribute.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

Contribute to PES-Learn!
========================

We welcome contributions and ideas for PES-Learn! to get started, check out the `developer documentation <../develop/dev_docs.html>`_.
5 changes: 5 additions & 0 deletions docs/source/community/support.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

PES-Learn Support
=================

WIP
12 changes: 10 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = []
extensions = [
'sphinx_copybutton'
]

templates_path = ['_templates']
exclude_patterns = []
Expand All @@ -24,5 +26,11 @@
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = 'alabaster'
html_theme = 'sphinx_book_theme'
html_static_path = ['_static']
html_theme_options = {'use_sidenotes': True,
'logo': {
'text': 'PES-Learn',
},
}
html_logo = '_static/peslearn.png'
3 changes: 3 additions & 0 deletions docs/source/develop/dev_docs.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

Developer Documentation coming soon!
====================================
Loading

0 comments on commit a30bbfc

Please sign in to comment.