-
Notifications
You must be signed in to change notification settings - Fork 9
/
pixi.toml
80 lines (61 loc) · 1.44 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "AnyPyTools"
description = "Add a short description here"
authors = ["Morten Enemark Lund <[email protected]>"]
channels = ["conda-forge", "anybody" ]
platforms = ["win-64", "linux-64"]
[tasks]
[dependencies]
python= ">=3.8"
pip="*"
h5py="*"
setuptools="*"
pydoe="*"
tqdm="*"
scipy="*"
pygments_anyscript="*"
pandas="*"
ipywidgets="*"
[target.win-64.dependencies]
pywin32="*"
[pypi-dependencies]
anypytools = {path=".", editable=false}
[feature.build.dependencies]
build="*"
twine="*"
[feature.build.tasks]
clean-build = "rm -rf build dist"
pipy-upload = {cmd="twine upload dist/*"}
build = {cmd="python -m build . --sdist"}
[feature.jupyter.dependencies]
jupyterlab = "*"
[feature.test.dependencies]
pytest="*"
pytest-xdist = "*"
[feature.test.target.win-64.dependencies]
anybodycon = "8.0.4"
[feature.test.tasks]
test = {cmd = "pytest tests", depends-on = ["install"]}
[feature.docs.dependencies]
python = "3.11.*"
ipython = ">=8.21.0,<8.22"
linkify-it-py = ">=2.0.2,<2.1"
sphinx = "<5"
myst-parser = ">=0.18.1,<0.19"
markupsafe = ">=2.1.4,<2.2"
make = ">=4.3,<5"
sphinx-design = ">=0.4.1,<0.5"
matplotlib = ">=3.8.2,<3.9"
cloud_sptheme = "1.10.1.post20200504175005.*"
pillow = ">=10.2.0,<10.3"
tqdm = ">=4.66.4,<4.67"
numpy = ">=1.26.4,<1.27"
jinja2 = ">=3.1.4,<3.2"
ipywidgets = ">=8.1.2,<8.2"
nbsphinx = ">=0.9.4,<0.10"
pytest = ">=8.2.1,<8.3"
[environments]
docs = ["docs"]
test = ["test"]
build = ["build"]
jupyter = ["jupyter"]