-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathPipfile
More file actions
29 lines (24 loc) · 487 Bytes
/
Pipfile
File metadata and controls
29 lines (24 loc) · 487 Bytes
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[packages]
mkdocs = "==1.6.1"
mkdocs-material = "==9.7.1"
python-markdown-math = "==0.9"
prompt_toolkit = "==3.0.52"
pyyaml = "==6.0.3"
Jinja2 = "==3.1.6"
pygments = "==2.19.2"
[dev-packages]
invoke = "*"
[requires]
python_version = "3.10"
[pipenv]
allow_prereleases = true
[scripts]
version = "mkdocs --version"
help = "mkdocs --help"
serve = "inv serve"
build = "mkdocs build"
deploy = "mkdocs gh-deploy"