forked from scientific-python/executable-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixi.toml
More file actions
46 lines (40 loc) · 1.01 KB
/
pixi.toml
File metadata and controls
46 lines (40 loc) · 1.01 KB
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
[project]
authors = ["Dan Allan <dallan@bnl.gov>"]
channels = ["conda-forge"]
description = "Add a short description here"
name = "interactive-tutorial-demo"
platforms = ["linux-64"]
version = "0.1.0"
[tasks]
build = { cmd = [
"sphinx-build",
"docs", # source directory
"build/html", # target directory
"-n", # warn about missing references
"-W", # any warnings fail the build
"-T", # show tracebacks
"--keep-going", # do not stop on error
] }
clean = "rm -rf build/*"
start = "jupyter lab"
[activation]
scripts = ["setup_jupyterlab_config.sh"]
[dependencies]
python = ">=3.11"
matplotlib-base = ">=3.9"
ipympl = ">=0.9"
jupyterlab = ">=4.2"
jupyterlab-myst = ">=2.4"
[pypi-dependencies]
sphinx = ">=8.0.2"
myst-nb = ">=1.1"
jupytext = ">=1.16"
sphinx-book-theme = ">=1.1"
sphinx-copybutton = ">=0.5"
[feature.jupyterlite.dependencies]
jupyterlab = "~=4.2.4"
jupyterlite-core = "==0.4.0"
jupyterlite-pyodide-kernel = "==0.4.1"
notebook = "~=7.2.1"
[environments]
jupyterlite = ["jupyterlite"]