forked from ODINN-SciML/MassBalanceMachine
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (67 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
70 lines (67 loc) · 1.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "massbalancemachine"
version = "0.0.1"
description = "A bridge between mass balance modelling and observations. Global machine learning glacier mass balance modelling that assimilates all glaciological and remote sensing data sources."
authors = ["Julian Biesheuvel <j.p.biesheuvel@student.tudelft.nl>"]
license = "MIT"
readme = "README.md"
package-mode = true
packages = [
{ include = "./massbalancemachine/"},
]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
numpy = "1.26.0"
scipy = "^1.14.0"
pandas = "^2.2.2"
shapely = "^2.0.5"
matplotlib = "^3.9.1"
pillow = "^10.4.0"
netcdf4 = "^1.7.1.post1"
scikit-image = "^0.24.0"
configobj = "^5.0.8"
xarray = "^2024.6.0"
bottleneck = "^1.4.0"
scikit-learn = "^1.5.1"
pyproj = "^3.6.1"
cartopy = "^0.23.0"
rasterio = "^1.3.10"
geopandas = "^1.0.1"
rioxarray = "^0.17.0"
seaborn = "^0.13.2"
tables = "^3.9.2"
salem = "^0.3.11"
motionless = "^1.3.3"
ipython = "^8.26.0"
jupyter = "^1.0.0"
jupyterlab = "^4.3"
sphinx = "^7.4.6"
sphinx-book-theme = "^1.1.3"
sphinx-intl = "^2.2.0"
sphinx-reredirects = "^0.1.5"
joblib = "^1.4.2"
progressbar2 = "^4.4.2"
oggm = "^1.6.1"
xgboost = "^2.1.0"
contextily = "^1.6.0"
dill = "^0.3.8"
pdoc = "^14.6.1"
tqdm = "^4.66.5"
cmcrameri = "^1.9"
torch = "^2.5.0"
skorch = "^1.1.0"
cdsapi = "^0.7.4"
pytest = "^8.2.2"
zarr = "2.18.4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pylint = "^3.2.5"
black = "^24.4.2"
autopep8 = "^2.3.1"
tox = "^4.16.0"
ruff = "^0.6.2"
nbdime = "^4.0.1"
nbdev = "^2.3.28"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"