-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
39 lines (35 loc) · 922 Bytes
/
mkdocs.yml
File metadata and controls
39 lines (35 loc) · 922 Bytes
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: OilPriceAPI Python SDK
site_description: Official Python SDK for OilPriceAPI
site_url: https://oilpriceapi.github.io/python-sdk/
repo_url: https://github.com/oilpriceapi/python-sdk
repo_name: oilpriceapi/python-sdk
theme:
name: material
palette:
scheme: slate
primary: deep orange
features:
- content.code.copy
- navigation.sections
nav:
- Home: index.md
- API Reference:
- Client: reference/client.md
- Async Client: reference/async_client.md
- Resources: reference/resources.md
- Models: reference/models.md
- Exceptions: reference/exceptions.md
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_source: false
show_root_heading: true
heading_level: 2
members_order: source
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- admonition