forked from feast-dev/feast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.py
More file actions
70 lines (58 loc) · 1.8 KB
/
Copy pathconf.py
File metadata and controls
70 lines (58 loc) · 1.8 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
# Configuration file for the Sphinx documentation builder
# ============================================================
# Project Information
# ============================================================
project = "feast"
copyright = "2019, Feast Authors"
author = "Feast Authors"
# The short X.Y version
version = "0.3"
# The full version, including alpha/beta/rc tags
release = "0.3.0"
# ============================================================
# General Configuration
# ============================================================
needs_sphinx = "1.6.3"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.doctest",
"sphinx.ext.intersphinx",
"sphinx.ext.todo",
"sphinx.ext.viewcode",
"sphinx.ext.autosummary",
"m2r",
]
templates_path = ["_templates"]
source_suffix = [".rst", ".md"]
master_doc = "index"
exclude_patterns = []
pygments_style = "sphinx"
# ============================================================
# HTML Output
# ============================================================
html_theme = "alabaster"
html_theme_options = {
"description": "Feast Python SDK",
"github_user": "gojek",
"github_repo": "feast",
"github_type": "star",
"github_banner": True,
"font_family": "'Roboto', Georgia, sans",
"head_font_family": "'Roboto', Georgia, serif",
"code_font_family": "'Roboto Mono', 'Consolas', monospace",
}
html_static_path = ["_static"]
html_sidebars = {
"**": [
"about.html",
"navigation.html",
"relations.html",
"searchbox.html",
]
}
html_favicon = "_static/favicon.png"
# ============================================================
# Extensions
# ============================================================
autodoc_default_flags = ["members"]
autosummary_generate = True