-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.16 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
[project]
name = "core"
version = "1.2.4"
description = "Common Operations for Robust Engineering"
authors = [
{name = "François Steinmetz", email = "fs@hygeos.com"},
{name = "Joackim Orcière", email = "joackim.orciere@hygeos.com"},
{name = "Nathan Capon", email = "nathan.capon@hygeos.com"}
]
requires-python = ">=3.10"
dependencies = ["tqdm", "xarray", "dask", "h5netcdf", "python-dotenv", "toml", "lxml", "scipy"]
[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.environments]
default = { features = ["hyp", "sys"], solve-group = "default" }
[tool.pixi.tasks]
tests = "pytest tests"
build_docs = "sphinx-build -b html docs/source docs/build"
[tool.pixi.dependencies]
pytest = "*"
pytest-html = "*"
pytest-xdist = "*"
tqdm = "*"
xarray = "*"
dask = "*"
scipy = "*" # used for core.interpolate tests
pooch = "*"
h5netcdf = "*"
python-dotenv = "*"
toml = "*"
matplotlib-base = "*"
lxml = "*"
sphinx = "*"
ipykernel = "*"
# numba = "*"
[tool.pixi.feature.hyp.dependencies]
[tool.pixi.feature.sys.dependencies]
sphinx_rtd_theme = "*"
sphinx = "*"