-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
71 lines (66 loc) · 1.85 KB
/
Copy pathmkdocs.yml
File metadata and controls
71 lines (66 loc) · 1.85 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
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
site_name: yente-client
site_description: Python SDK, CLI, and MCP server for the yente / OpenSanctions matching API
site_url: https://yenteclient.followthemoney.tech/
repo_url: https://github.com/opensanctions/yente-client
repo_name: opensanctions/yente-client
edit_uri: edit/main/python/docs/
docs_dir: docs
site_dir: site # gitignored; mkdocs build output
theme:
name: material
logo: https://assets.opensanctions.org/images/nura/logo-icon-white.svg
favicon: https://assets.opensanctions.org/images/nura/favicon-32.png
features:
- navigation.sections
- navigation.indexes
- navigation.top
- content.code.copy
- content.code.annotate
- search.suggest
palette:
primary: custom
accent: custom
extra_css: [stylesheets/extra.css]
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: google
show_source: false
show_root_heading: true
show_root_full_path: false
show_signature_annotations: true
separate_signature: true
merge_init_into_class: true
members_order: alphabetical
filters:
- "!^_"
paths: [src]
nav:
- Home: index.md
- Tutorial: tutorial.md
- Screening a file: screening.md
- CLI overview: cli.md
- MCP server: mcp.md
- API reference:
- api/index.md
- Client: api/client.md
- AsyncClient: api/async_client.md
- Entities: api/entities.md
- Filters: api/filters.md
- Response models: api/models.md
- Exceptions: api/exceptions.md
- Schemas: api/schemas.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- toc:
permalink: true