-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconf.py
More file actions
39 lines (30 loc) · 1.28 KB
/
conf.py
File metadata and controls
39 lines (30 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = 'Pore2Chip'
copyright = '2025, Aramy Truong, Maruti Mudunuru, Md Lal Mamud'
author = 'Aramy Truong, Maruti Mudunuru, Md Lal Mamud'
release = '0.2.0'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.napoleon',
]
templates_path = ['_templates']
exclude_patterns = []
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'conestack'
html_static_path = ['_static']
html_theme_options = {
'logo_url': '_static/p2c_logo.svg',
'logo_title': 'Pore2Chip',
'logo_width': '70px',
'logo_height': '70px',
'github_url': 'https://github.com/EMSL-Computing/Pore2Chip',
'pypi_url': 'https://pypi.org/project/pore2chip/',
}