-
Notifications
You must be signed in to change notification settings - Fork 11
/
pixi.toml
64 lines (50 loc) · 1.91 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
61
62
63
64
[project]
name = "ammr"
authors = ["Morten Enemark Lund <[email protected]>"]
channels = ["conda-forge", "anybody/label/rc"]
platforms = ["linux-64", "win-64"]
[dependencies]
python = ">=3.12.8,<3.14"
jinja2 = ">=3.1.4"
debugpy = ">=1.8.11"
[feature.anybodycon.dependencies]
python = ">=3.12.0,<3.13"
anypytools="*"
nomkl = "*"
[feature.anybodycon.target.win-64.dependencies]
anybodycon = "8.1.0beta1"
[feature.anybodycon.tasks]
update-mocap-files = {cmd = "python recreate_mocap_intermediate_files.py", cwd = "Tests", description = "Recreate MoCap application intermediate files"}
bmconfig = {cmd = "python render_templates.py", cwd = "Body/AAUHuman/BuildTools", description = "Create BM config files"}
[feature.test.dependencies]
pytest = ">=8.3.4,<9"
pytest-split = ">=0.10.0,<0.11"
pytest-xdist = ">=3.6.1,<4"
azure-storage-blob = ">=12.24.0,<13"
[feature.test.tasks]
testall = {cmd = "pytest -n auto --dist worksteal --runslow", cwd = "Tests", description = "Run all tests"}
[feature.docs.dependencies]
python = ">=3.13.1,<3.14"
sphinx-book-theme = ">=1.1.3,<1.2"
sphinx-thebe = ">=0.3.1,<0.4"
sphinxcontrib-youtube = ">=1.4.1,<1.5"
sphinx-tabs = ">=3.4.1,<3.5"
sphinx-design = ">=0.6.1,<0.7"
sphinx-togglebutton = ">=0.3.2,<0.4"
sphinxext-opengraph = ">=0.9.1,<0.10"
sphinxcontrib-bibtex = ">=2.6.3,<2.7"
sphinx-copybutton = ">=0.5.2,<0.6"
myst-parser = ">=4.0.0,<4.1"
pygments_anyscript = ">=1.4.0,<1.5"
jinja2 = ">=3.1.4,<3.2"
python-frontmatter = ">=1.1.0,<1.2"
pydantic = ">=2.10.3,<2.11"
tqdm = ">=4.67.1,<4.68"
[feature.docs.tasks]
docs = {cmd = "sphinx-build -M html . _build -W --keep-going", cwd = "Docs", description = "Build documentation"}
docs-linkcheck = {cmd = "sphinx-build -M linkcheck . _build -W --keep-going -a -q ", cwd = "Docs"}
docs-clean = {cmd = "rm -rf _build", cwd = "Docs"}
[environments]
anybodycon = ["anybodycon"]
test = ["test", "anybodycon"]
docs = {features = ["docs"], no-default-feature = true}