Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Manual #368

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
version: 2

build:
os: ubuntu-22.04
tools:
python: "3.10"

sphinx:
configuration: docs/source/conf.py

python:
version: 3
install:
- requirements: docs/requirements.txt
system_packages: true

sphinx:
configuration: docs/source/conf.py
3 changes: 2 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
ipykernel
nbsphinx
nbsphinx
pydata-sphinx-theme
9 changes: 5 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html

import sphinx_rtd_theme
#import sphinx_rtd_theme

# -- Path setup --------------------------------------------------------------

Expand All @@ -20,7 +20,7 @@
# -- Project information -----------------------------------------------------

project = 'Forte'
copyright = '2021, Forte Developers'
copyright = '2023, Forte Developers'
author = 'Forte Developers'

# The full version, including alpha/beta/rc tags
Expand All @@ -32,7 +32,7 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['nbsphinx', 'sphinx.ext.mathjax', 'sphinx_rtd_theme', 'sphinx.ext.autodoc']
extensions = ['nbsphinx', 'sphinx.ext.mathjax', 'sphinx.ext.autodoc']

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand All @@ -46,7 +46,8 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'sphinx_rtd_theme'
html_theme = "pydata_sphinx_theme"
#html_theme = 'sphinx_rtd_theme'

html_theme_options = {
# 'analytics_id': 'UA-XXXXXXX-1', # Provided by Google in your dashboard
Expand Down
11 changes: 11 additions & 0 deletions forte/options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
AVAS:
AVAS:
type: "bool"
default: False
help: "Form AVAS orbitals?"

JOB_TYPE:
type: "str"
default: "NEWDRIVER"
choices: ["NONE", "NEWDRIVER", "MR-DSRG-PT2", "CASSCF", "MCSCF_TWO_STEP", "TDCI"]
help: "Specify the job type"
Loading