forked from astral-sh/rye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
148 lines (141 loc) · 4.57 KB
/
mkdocs.yml
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
site_name: Rye
site_description: An Experimental Package Management Solution for Python
repo_name: astral-sh/rye
repo_url: https://github.com/astral-sh/rye
edit_uri: edit/main/docs/
copyright: Copyright © 2023 Armin Ronacher
nav:
- Welcome: index.md
- User Guide:
- guide/index.md
- Installation: guide/installation.md
- Basics: guide/basics.md
- Configuration: guide/config.md
- Python Project: guide/pyproject.md
- Syncing and Locking: guide/sync.md
- Shims: guide/shims.md
- Building and Publishing: guide/publish.md
- Rust Modules: guide/rust.md
- Dependency Sources: guide/sources.md
- Dependencies: guide/deps.md
- Workspaces: guide/workspaces.md
- Virtual Projects: guide/virtual.md
- Docker: guide/docker.md
- Commands:
- Overview: guide/commands/index.md
- add: guide/commands/add.md
- build: guide/commands/build.md
- config: guide/commands/config.md
- fetch: guide/commands/fetch.md
- fmt: guide/commands/fmt.md
- init: guide/commands/init.md
- install: guide/commands/install.md
- lock: guide/commands/lock.md
- lint: guide/commands/lint.md
- make-req: guide/commands/make-req.md
- pin: guide/commands/pin.md
- publish: guide/commands/publish.md
- remove: guide/commands/remove.md
- run: guide/commands/run.md
- show: guide/commands/show.md
- sync: guide/commands/sync.md
- test: guide/commands/test.md
- toolchain:
- Overview: guide/commands/toolchain/index.md
- fetch: guide/commands/toolchain/fetch.md
- list: guide/commands/toolchain/list.md
- register: guide/commands/toolchain/register.md
- remove: guide/commands/toolchain/remove.md
- tools:
- Overview: guide/commands/tools/index.md
- install: guide/commands/tools/install.md
- uninstall: guide/commands/tools/uninstall.md
- list: guide/commands/tools/list.md
- self:
- Overview: guide/commands/self/index.md
- completion: guide/commands/self/completion.md
- update: guide/commands/self/update.md
- uninstall: guide/commands/self/uninstall.md
- uninstall: guide/commands/uninstall.md
- version: guide/commands/version.md
- Toolchains:
- guide/toolchains/index.md
- Portable CPython: guide/toolchains/cpython.md
- PyPy: guide/toolchains/pypy.md
- Tools: guide/tools.md
- FAQ: guide/faq.md
- Community: community.md
- Changelog: changelog.md
- Philosophy: philosophy.md
theme:
name: material
custom_dir: docs/.overrides
features:
- navigation.instant
- navigation.tracking
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.action.edit
- toc.integrate
- toc.follow
- navigation.path
- navigation.top
- navigation.tabs
- navigation.footer
font:
text: Inter
monospace: Fira Mono
favicon: static/favicon.svg
logo: static/logo.svg
# This is a bit of a hack. We don't actually want this toggle at all,
# it's all based on media queries. But to abuse the mkdocs theme it
# still uses the toggles to trigger all the default logic. We will
# then hide this selector though with CSS. The auto updating then
# happens in palette.html with JavaScript.
palette:
scheme: default
primary: custom
accent: custom
markdown_extensions:
- attr_list
- admonition
- def_list
- pymdownx.details
- pymdownx.keys
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- mdx_gh_links:
user: astral-sh
repo: rye
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
plugins:
- search
- mkdocs-simple-hooks:
hooks:
on_post_build: "docs.hooks:copy_get"
- mkdocs-version-annotations:
version_added_title: 'new in **\1**'
version_changed_title: 'changed in **\1**'
version_removed_title: 'removed in **\1**'
- include-markdown:
preserve_includer_indent: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/mitsuhiko
name: Follow @mitsuhiko on GitHub
- icon: fontawesome/brands/twitter
link: https://twitter.com/@mitsuhiko
name: Follow @mitsuhiko on Twitter
- icon: material/alpha-b-box
link: https://bsky.app/profile/mitsuhiko.at
name: Follow @mitsuhiko.at on Bluesky
- icon: fontawesome/brands/discord
link: https://discord.gg/drbkcdtSbg
name: Discuss Rye on Discord
extra_css:
- static/extra.css