-
Notifications
You must be signed in to change notification settings - Fork 48
/
mkdocs.yml
72 lines (61 loc) · 1.46 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
### Site metadata ###
site_name: YFPY - Yahoo Fantasy Sports API Wrapper
site_description: Python API wrapper for the Yahoo Fantasy Sports public API
site_url: https://yfpy.uberfastman.com
site_author: "Wren J. R. (uberfastman)"
repo_url: https://github.com/uberfastman/yfpy
edit_uri: ""
### Build settings ###
extra:
version: !ENV [YFPY_VERSION, 'vX.X.X']
docs_dir: docs-mkdocs
site_dir: docs
theme:
# name: mkdocs
name: readthedocs
color_mode: auto
user_color_mode_toggle: true
navigation_depth: 6
logo: yfpy-logo.svg
extra_css:
- extra.css
extra_javascript:
- extra.js
nav:
- Welcome: index.md
- YFPY - Yahoo Fantasy Sports API Wrapper: readme.md
- Example Usage:
- Quickstart: quickstart.md
- Package:
- Query: query.md
- Data: data.md
- Models: models.md
- Extras:
- Utilities: utils.md
- Exceptions: exceptions.md
- Logging: logger.md
- Testing:
- PyTest: test.md
markdown_extensions:
- toc:
permalink: true
- pymdownx.snippets:
check_paths: true
- sane_lists
- codehilite
plugins:
- search
- autorefs
- mkdocstrings:
enabled: !ENV [ENABLE_MKDOCSTRINGS, true]
# custom_templates: templates
default_handler: python
handlers:
python:
options:
show_source: true
separate_signature: true
show_submodules: true
docstring_section_style: table
members_order: source
summary: true