-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpixi.toml
105 lines (94 loc) · 2.06 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[project]
name = "hydromt_fiat"
description = "HydroMT plugin for Hydrological model for flood impact assessment and adaptation planning"
authors = [
"Dirk Eilander<dirk.eilander@deltares.nl>",
"Frederique de Groen<frederique.degroen@deltares.nl>",
"Mario Fuentes Monjaraz<mario.fuentesmonjaraz@deltares.nl>",
"Luis Rodriguez Galvez<luis.rodriguez@deltares.nl>",
"Lieke Meijer<lieke.meijer@deltares.nl>",
"Sarah Rautenbach<sarah.rautenbach@deltares.nl>",
"Sam Vente<sam.vente@deltares.nl>",
]
channels = ["conda-forge"]
platforms = ["win-64"]
[tasks]
lint = { cmd = ["pre-commit", "run", "--all"] }
doctest = { cmd = [
"sphinx-build",
"-M",
"doctest",
"docs",
"docs/_build",
"-W",
] }
docs-build = { cmd = [
"sphinx-build",
"-M",
"html",
"docs",
"docs/_build",
"-W",
], depends_on = [
"doctest",
] }
docs = { depends_on = ["docs-build"] } # alias
doc = { depends_on = ["docs-build"] } # alias
serve = { cmd = ["python", "-m", "http.server", "-d", "docs/_build/html"] }
test = { cmd = ["pytest"] }
test-lf = { cmd = ["pytest", "--lf", "--tb=short"] }
test-err-warn = { cmd = ["pytest", "--tb=short", "-W", "error"] }
test-cov = { cmd = [
"pytest",
"--verbose",
"--cov=hydromt",
"--cov-report",
"xml",
] }
[environments]
default = {features = ["dev", "docs"]}
dev = {features = ["dev"]}
docs = {features = ["docs"]}
[dependencies]
census = "*"
gdal = ">=3.1"
geopandas = "*"
geopy = "*"
hydromt = "<1.0.0"
hydromt_sfincs = "*"
ipykernel = "*"
numpy = "*"
openpyxl = "*"
osmnx = "*"
pandas = "*"
pydantic = "*"
pyogrio = "*"
python = "3.10.*"
rasterio = "*"
requests = "*"
rioxarray = "*"
tomli = "*"
tomli-w = "*"
universal_pathlib = "*"
us = "*"
xarray = "*"
xarray-spatial = "*"
[pypi-dependencies]
pycountry-convert = "*"
[feature.dev.dependencies]
pytest = "*"
ruff = "0.6.8"
pre-commit = "*"
tqdm = "*"
[feature.docs.dependencies]
jupyterlab = "*"
matplotlib-base = "*"
mercantile = "*"
notebook = "*"
packaging = "*"
pydata-sphinx-theme = "*"
sphinx = "*"
nbsphinx = "*"
[feature.docs.pypi-dependencies]
sphinx_design = "*"
sphinx_autosummary_accessors = "*"