-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
44 lines (42 loc) · 1.2 KB
/
mkdocs.yml
File metadata and controls
44 lines (42 loc) · 1.2 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
40
41
42
43
44
site_name: "spatial-graph"
site_url: https://github.com/funkelab/spatial_graph
site_description: >-
High performance spatial graph library for Python
# Repository
repo_name: funkelab/spatial_graph
repo_url: https://github.com/funkelab/spatial_graph
theme:
name: material
palette:
scheme: default
primary: pink
features:
- content.tabs.link
- content.code.copy
- content.code.annotate
- navigation.instant
plugins:
- search
- api-autonav:
modules: ["src/spatial_graph"]
- mkdocstrings:
handlers:
python:
inventories:
- https://docs.python.org/3/objects.inv
options:
docstring_section_style: list # or "table"
docstring_style: "numpy"
preload_modules: [spatial_graph]
filters: ["!^_"]
heading_level: 1
merge_init_into_class: true
parameter_headings: true
separate_signature: true
show_root_heading: true
show_signature_annotations: true
show_symbol_type_heading: true
show_symbol_type_toc: true
summary: true
inherited_members: true
force_inspection: true