generated from Paul-B98/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
52 lines (50 loc) · 1.21 KB
/
mkdocs.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
site_name: project_name
docs_dir: docs/docs
nav:
- Getting Started:
- Package Overview: 'getting_started/overview.md'
- Installation: 'getting_started/installation.md'
- Basic Usage: 'getting_started/basic_usage.md'
- Contributing: 'getting_started/contributing.md'
# - User Guide:
- API Reference: reference/
extra_css:
- css/code_select.css
theme:
name: material
repo_url: 'https://github.com/Paul-B98/python-project-template'
features:
- navigation.tabs
- navigation.footer
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/Paul-B98/python-project-template
- icon: fontawesome/brands/python
link: https://pypi.org/project/ # TODO change this to your project name
copyright: Copyright © 2023 AIDH-MS
markdown_extensions:
- attr_list
- pymdownx.highlight:
linenums: true
use_pygments: true
pygments_lang_class: true
- pymdownx.superfences
- pymdownx.extra
- footnotes
plugins:
- search:
- macros:
include_dir: ./
- gen-files:
scripts:
- docs/scripts/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
paths: ['project_name']
options:
docstring_style: numpy