-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpixi.toml
60 lines (52 loc) · 1.77 KB
/
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
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
[project]
name = "anybody-tutorial"
version = "0.1.0"
description = "Python enviroments for AnyBody's Tutorials"
authors = ["Morten Enemark Lund <[email protected]>"]
channels = ["https://prefix.dev/conda-forge", "https://prefix.dev/anybody"]
platforms = ["win-64","linux-64"]
[tasks]
clean = "rm -rf _build"
linkcheck = {cmd="sphinx-build -M linkcheck . _build -q", depends-on = ["clean"]}
build-pdf = {cmd="sphinx-build -M simplepdf . _build", depends-on = ["clean"]}
build-html = "sphinx-build -M html . _build"
build-html-future = "sphinx-build -M html . _build -t future_tutorials"
build-html-all = "sphinx-build -M html . _build -a"
html = {cmd= 'explorer .\_build\html\index.html', depends-on = ["build-html-all"]}
pdf = {cmd= 'explorer .\_build\simplepdf\Agada-Documentation.pdf', depends-on = ["build-pdf"]}
livehtml = "sphinx-autobuild . _build --port=0 --open-browser -j=4"
[dependencies]
python = ">=3.12,<3.13"
sphinxext-opengraph = ">=0.9.1,<0.10"
sphinx-copybutton = ">=0.5.2,<0.6"
sphinxcontrib-youtube = ">=1.4.1,<2"
linkify-it-py = ">=2.0.3,<3"
ipython = ">=9.0.2,<10"
make = ">=4.4.1,<5"
sphinx-autobuild = ">=2024.10.3,<2025"
sphinx-simplepdf = ">=1.6.0,<2"
sphinx = ">=8.2.3,<9"
pygments_anyscript = ">=1.4.0,<2"
sphinx-togglebutton = ">=0.3.2,<0.4"
sphinx-design = ">=0.6.1,<0.7"
jinja2 = ">=3.1.6,<4"
tomli = ">=2.2.1,<3"
pytest = ">=8.3.5,<9"
myst-parser = ">=4.0.1,<5"
sphinx-book-theme = ">=1.1.4,<2"
myst-nb = ">=1.2.0,<2"
anypytools = ">=1.13.1,<2"
scipy = ">=1.15.2,<2"
ipywidgets = ">=8.1.5,<9"
pydata-sphinx-theme = ">=0.15.4,<0.16"
[feature.test.target.win-64.dependencies]
pytest = "*"
pytest-xdist = "*"
anypytools = "*"
debugpy = "*"
pytest-split = "*"
anybodycon = "==8.1.0"
[feature.test.target.win-64.tasks]
pytest = "pytest"
[environments.test]
features = ["test"]