-
Notifications
You must be signed in to change notification settings - Fork 0
/
pixi.toml
27 lines (23 loc) · 902 Bytes
/
pixi.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
[project]
name = "sphinx-template"
version = "0.1.0"
description = "Add a short description here"
authors = ["Morten Enemark Lund <[email protected]>"]
channels = ["conda-forge", "anybody"]
platforms = ["win-64"]
[tasks]
link-check = "sphinx-build -M linkcheck Docs/. Docs/_build"
build-pdf = "sphinx-build -M simplepdf Docs/. Docs/_build"
build-html = "sphinx-build -M html Docs/. Docs/_build"
build-html-all = "sphinx-build -M html Docs/. Docs/_build -a"
html = {cmd= 'explorer .\Docs\_build\html\index.html', depends_on = ["build-html-all"]}
pdf = {cmd= 'explorer .\Docs\_build\simplepdf\Agada-Documentation.pdf', depends_on = ["build-pdf"]}
[dependencies]
sphinx-needs = ">=2.0.0,<2.1"
sphinx = "<7"
myst-parser = ">=2.0.0,<2.1"
sphinx-simplepdf = ">=1.6.0,<1.7"
sphinx-design = ">=0.5.0,<0.6"
sphinx-copybutton = ">=0.5.2,<0.6"
linkify-it-py = ">=2.0.0,<2.1"
sphinx-book-theme = ">=1.0.1,<1.1"