forked from pinecone-io/pinecone-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.py
More file actions
47 lines (41 loc) · 1.29 KB
/
conf.py
File metadata and controls
47 lines (41 loc) · 1.29 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
import pinecone
project = "Pinecone Python SDK"
author = "Pinecone Systems, Inc."
version = pinecone.__version__
copyright = "%Y, Pinecone Systems, Inc."
html_baseurl = "https://sdk.pinecone.io/python"
html_static_path = ["_static"]
html_favicon = "favicon-32x32.png"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.viewcode",
"sphinx.ext.todo",
"sphinx.ext.napoleon",
"sphinx.ext.coverage",
"sphinx.ext.autodoc.typehints",
"sphinx.ext.doctest",
"sphinx.ext.intersphinx",
"myst_parser",
]
# -- HTML Configuration -------------------------------------------------
html_theme_options = {
"logo": "pinecone-logo.svg",
"description": "Pinecone Python SDK",
"github_user": "pinecone-io",
"github_repo": "pinecone-python-client",
"github_button": True,
"fixed_sidebar": True,
"page_width": "1140px",
"sidebar_width": "300px",
"show_related": False,
"show_powered_by": False,
"extra_nav_links": {
"Github Source": "https://github.com/pinecone-io/pinecone-python-client",
"Pinecone Home": "https://pinecone.io",
"Pinecone Docs": "https://docs.pinecone.io",
"Pinecone Console": "https://app.pinecone.io",
},
}
# Add support for code block highlighting
highlight_language = "python"
pygments_style = "sphinx"