Skip to content

Commit 1f98026

Browse files
committed
changes
1 parent f6aa808 commit 1f98026

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

docs/environment.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: SymSpellCppPy_docs
2+
3+
channels:
4+
- defaults
5+
- conda-forge
6+
7+
dependencies:
8+
- python>=3.7
9+
- sphinx_rtd_theme
10+
- pybind11>=2.4.3
11+
- setuptools_scm
12+
- sphinx-issues
13+
- cmake
14+
- recommonmark

docs/source/conf.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
'sphinx.ext.doctest',
4343
'sphinx.ext.viewcode',
4444
'sphinx.ext.githubpages',
45+
'sphinx.ext.intersphinx',
4546
'recommonmark',
4647
'sphinx_rtd_theme'
4748
]
@@ -66,4 +67,12 @@
6667
# so a file named "default.css" will overwrite the builtin "default.css".
6768
html_static_path = ['_static']
6869

70+
autodoc_default_options = {
71+
'members': None,
72+
'imported-members': True,
73+
'undoc-members': True,
74+
'show-inheritance': True,
75+
}
76+
6977
# -- Extension configuration -------------------------------------------------
78+
intersphinx_mapping = {'https://docs.python.org/': None}

0 commit comments

Comments
 (0)