-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
39 lines (39 loc) · 1.04 KB
/
mkdocs.yml
File metadata and controls
39 lines (39 loc) · 1.04 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
site_name: Evalica
site_author: Dmitry Ustalov
site_description: Evalica, your favourite evaluation toolkit.
copyright: Copyright © 2024–2026 Dmitry Ustalov
repo_name: dustalov/evalica
repo_url: https://github.com/dustalov/evalica
nav:
- Home: index.md
- Tutorial: tutorial.ipynb
- Counting: counting.md
- Bradley-Terry: bradley-terry.md
- Elo: elo.md
- Linear Algebra: linalg.md
- Alpha: alpha.md
- Utilities: utils.md
- Errors: errors.md
- Migration: migration.md
theme:
name: material
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
inventories:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://pandas.pydata.org/docs/objects.inv
- https://docs.scipy.org/doc/scipy/objects.inv
options:
show_root_heading: true
show_symbol_type_heading: true
show_symbol_type_toc: true
- mkdocs-jupyter:
include: ["tutorial.ipynb"]
execute: true
allow_errors: false
include_source: true