-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (47 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
56 lines (47 loc) · 1.22 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 = "eotools"
version = "0.1.0"
description = "A collection of tools and modules for building processing chains."
authors = [{name = "HYGEOS team"}]
requires-python = ">= 3.11"
dependencies = [
"xarray",
"cf-xarray",
"pint-xarray",
"xlrd",
]
[project.optional-dependencies]
git = [
"core @ git+https://github.com/hygeos/core.git",
"luts @ git+https://github.com/hygeos/luts.git",
"eoread @ git+https://github.com/hygeos/eoread.git",
"sand @ git+https://github.com/hygeos/sand.git",
]
gatiab = [
"gatiab"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
eotools = { path = ".", editable = true, extras = ["git"]}
[tool.pixi.dependencies]
pytest-html = "*"
pytest = "*"
matplotlib-base = "*"
pytest-xdist = "*"
xarray = "*"
openpyxl = "*"
pint-xarray = "*"
cf-xarray = "*"
xlrd = "*" # used only for get_SRF_meris
[tool.pixi.feature.gatiab.dependencies]
gatiab = "*"
[tool.pixi.feature.gatiab.tasks]
tests = "pytest tests/"
[tool.pixi.environments]
default = { solve-group = "default" }
gatiab = { features = ["gatiab"], solve-group = "default" }