-
Notifications
You must be signed in to change notification settings - Fork 1
/
pixi.toml
58 lines (51 loc) · 1.61 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
# 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", "osx-64"]
[tasks]
# use as `pixi run install-editable`
install-dependencies = "pixi install && pip install -e plugins/fluidfft-builder"
install-editable = {cmd = "pip install -e . -v --no-build-isolation --no-deps", depends_on = ["install-dependencies"]}
install-fftw = "pip install -e plugins/fluidfft-fftw --no-build-isolation -v"
install-mpi_with_fftw = "pip install -e plugins/fluidfft-mpi_with_fftw --no-build-isolation -v"
install-fftwmpi = "pip install -e plugins/fluidfft-fftwmpi --no-build-isolation -v"
[dependencies]
python = ">=3.10"
numpy = ">=1.26.3"
transonic = ">=0.6.4"
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"
cython = ">=3.0.8"
fftw = ">=3.3.10"
pkg-config = ">=0.29.2"
pyfftw = ">=0.13.1"
[pypi-dependencies]
pymech = "*"
pytest-allclose = "*"
importlib-metadata = "*"
[build-dependencies]
meson = ">=1.3.1"
ninja = ">=1.11.1"
meson-python = ">=0.15.0"
pythran = ">=0.15.0"
transonic = ">=0.6.1"
[target.linux-64.dependencies]
cxx-compiler = ">=1.0.0,<2"
[target.win-64.dependencies]
m2w64-gcc = ">=5.3.0,<6"