-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
55 lines (46 loc) · 1.26 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
47
48
49
50
51
52
53
54
55
[project]
name = "eoread"
authors = [{name = "HYGEOS team"}]
description = "Modular implementation of satellite data input/output relying on xarray."
license = "Apache 2.0"
version = "0.5.0"
requires-python = "< 3.14"
readme = "README.md"
dependencies = [
"lxml", "pyproj", "pysolar", "pyepr",
"rioxarray", "h5netcdf", "h5py", "netcdf4"
]
[project.optional-dependencies]
git = [
"core @ git+https://github.com/hygeos/core.git",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
eoread = { path = ".", editable = true, extras = ["git"]}
sand = { git = "git+https://github.com/hygeos/SAND.git" }
[tool.pixi.tasks]
tests = "pytest tests/"
reader = "python3 scripts/eval_readers.py"
[tool.pixi.dependencies]
pytest = "*"
pytest-html = "*"
pytest-xdist = "*"
matplotlib-base = "*"
ipykernel = "*"
libgdal-jp2openjpeg = "*" # Required to read compress jp2 file in MSI reader
pyhdf = "*"
numba = "*"
[tool.pixi.environments]
default = { features = ["hyp", "sys"], solve-group = "default" }
[tool.pixi.feature.sys.dependencies]
libgdal-jp2openjpeg = "*"
[tool.pixi.feature.hyp.dependencies]
xarray = "*"
dask = "*"
scipy = "*"
numpy = "*"