-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathmkdocs.yml
87 lines (79 loc) · 2.17 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
site_name: pyextremes
repo_url: https://github.com/georgebv/pyextremes
repo_name: georgebv/pyextremes
edit_uri: ""
site_description: Extreme Value Analysis (EVA) in Python
site_author: George Bocharov
copyright: Copyright © 2022 George Bocharov
nav:
- pyextremes: index.md
- Quick Start: quickstart.md
- User Guide:
- Read First: user-guide/1-read-first.md
- Extreme Value Types: user-guide/2-extreme-value-types.md
- Block Maxima: user-guide/3-block-maxima.md
- Peaks Over Threshold: user-guide/4-peaks-over-threshold.md
- Threshold Selection: user-guide/5-threshold-selection.md
- Estimating Return Periods: user-guide/6-return-periods.md
- API Reference:
- EVA: api/eva.md
- Extremes: api/extremes.md
- Models: api/models.md
- Plotting: api/plotting.md
theme:
name: material
icon:
repo: fontawesome/brands/github
language: en
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/lightbulb
name: Switch to light mode
features:
- navigation.instant
- navigation.top
docs_dir: docs
extra_css:
- css/extra.css
extra_javascript:
- js/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/georgebv/pyextremes
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/gbocharov/
markdown_extensions:
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
linenums_style: pymdownx.inline
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- abbr
- admonition
- attr_list
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_source: true
docstring_style: "numpy"
show_root_heading: true