This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
74 lines (58 loc) · 1.71 KB
/
pyproject.toml
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
72
73
74
[tool.isort]
profile = "black"
extend_skip = ["debug", "tests", "examples"]
[tool.black]
target-version = ['py36', 'py37', 'py38', 'py39']
exclude = '''
/(
| debug
| docs
| examples
| tests
)/
'''
[tool.portray]
extra_dirs = ["resources"]
[tool.portray.mkdocs]
repo_url = "https://github.com/fidelity/stoke"
markdown_extensions = ["pymdownx.superfences", "pymdownx.highlight"]
#extra_javascript = [
# "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js",
# "resources/js/config.js"
#]
#extra_css = [
# "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/styles/atom-one-light.min.css",
# "resources/css/extra_colors.css"
#]
#[[tool.portray.mkdocs.markdown_extensions]]
#[tool.portray.mkdocs.markdown_extensions."pymdownx.highlight"]
#use_pygments = false
[tool.portray.mkdocs.theme]
favicon = "resources/images/stoke_small.png"
logo = "resources/images/stoke_small.png"
name = "material"
features = ["navigation.tabs", "navigation.top"]
[tool.portray.mkdocs.theme.palette]
#scheme = "slate"
primary = "white"
accent = "red"
[tool.portray.mkdocs.theme.icon]
repo = "fontawesome/brands/github-alt"
[[tool.portray.mkdocs.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/ncilfone"
[[tool.portray.mkdocs.extra.social]]
icon = "fontawesome/brands/linkedin"
link = "https://www.linkedin.com/in/ncilfone/"
[[tool.portray.mkdocs.nav]]
Home = "docs/Home.md"
[[tool.portray.mkdocs.nav]]
Installation = "docs/Installation.md"
[[tool.portray.mkdocs.nav]]
"Quick Start" = "docs/Quick-Start.md"
[[tool.portray.mkdocs.nav]]
Launchers = "docs/Launchers.md"
[[tool.portray.mkdocs.nav]]
Examples = "docs/Examples.md"
[[tool.portray.mkdocs.nav]]
Contributing = "CONTRIBUTING.md"