-
Notifications
You must be signed in to change notification settings - Fork 8
/
pixi.toml
46 lines (41 loc) · 1.26 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
# Issues pixi
# - should be able to read pyproject.toml [project] (name, version, description)
# - automatically adds too strict version, bad for Python library
# - optional dependencies and dev groups as PDM
# - import data from pyproject.toml: [project] and [project.optional-dependencies]
[project]
name = "fluidsim"
channels = ["conda-forge"]
platforms = ["linux-64", "win-64"]
[tasks]
# use as `pixi run install-editable`
# install-dependencies = "pixi install && pip install -e ./lib && pip install ../transonic"
install-dependencies = "pixi install && pip install -e ./lib && pip install 'transonic>=0.6.0'"
install-editable = {cmd = "pip install -e . -v --no-build-isolation --no-deps", depends_on = ["install-dependencies"]}
[dependencies]
python = ">=3.9"
numpy = ">=1.26.3"
transonic = ">=0.5.3"
fluiddyn = ">=0.5.2"
h5netcdf = ">=1.3.0"
h5py = ">=3.10.0"
xarray = ">=2023.12.0"
matplotlib = ">=3.3"
scipy = ">=1.11.4"
rich = ">=13.7.0"
pip = ">=23.3.2"
pytest = ">=7.4.4"
ipython = ">=8.20.0"
coverage = ">=7.4.0"
pytest-cov = ">=4.1.0"
pytest-mock = ">=3.12.0"
fluidfft = ">=0.2.9"
mpi4py = ">=3.1.5"
[pypi-dependencies]
pymech = "*"
pytest-allclose = "*"
importlib-metadata = "*"
[build-dependencies]
meson-python = ">=0.15.0"
pythran = ">=0.15.0"
transonic = ">=0.5.3"